-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
55 lines (53 loc) · 889 Bytes
/
stylesheet.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
*{
margin: 0;
padding:0;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.wrapper{
max-width: 1024px;
margin: auto;
}
.one{
background-color: darkslateblue;
width: 100%;
height: 100vh;
text-align: center;
}
.flag{
width: 10%;
height: 10%;
visibility: hidden;
}
a{
text-decoration: none;
padding: 20px 50px;
background-color: white;
font-size: 20px;
display: inline-block;
margin-top: 40px;
}
h2{
font-size: 2em;
color: white;
margin-top: 20px;
}
.left-side{
width: 50%;
float: left;
text-align: center;
}
.right-side{
width: 50%;
float: left;
text-align: center;
}
img{
width: 80%;
height: 80%;
margin-top: 20px;
}
.player{
width: 100px;
height: 100px;
background-color: red;
}