-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayers.css
52 lines (47 loc) · 957 Bytes
/
players.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
.container-fluid {
width: 100vw;
height: 100vh;
background-color: #FED35F;
}
.row {
width: 100vw;
}
#player-title {
font-family:Lato !important;
font-weight:300;
font-style: italic;
color: #333333;
text-align: center;
margin-top: 25px;
font-size:55px;
}
#player-el {
text-align: center;
font-family: Lato !important;
margin-top:30px;
font-weight: 200;
font-size:40px;
color: black;
}
#start {
text-align: center;
padding-top:15px;
padding-bottom:15px;
padding-left:45px;
padding-right:45px;
width: 250px;
margin-left: calc(50vw - 145px);
margin-top:50px;
display:inline-block;
font-family: Lato !important;
color: #5F71FE;
border: 1px solid #5F71FE;
font-weight:200;
font-size: 50px;
transition: color 200ms, background-color 200ms;
cursor:pointer;
border-radius: 50px;
}
#start:hover {
text-decoration: none;
}