-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (75 loc) · 1.3 KB
/
style.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,900');
* {
box-sizing: border-box;
margin: 0;
}
html, body {
margin: 0;
padding: 0;
line-height: 1;
}
body {
height: 100vh;
width: 100%;
font-family: 'Roboto', sans-serif;
font-weight: 300;
text-align: center;
display: flex;
align-items: center;
background: #8E2DE2;
background: -webkit-linear-gradient(to right, #4A00E0, #8E2DE2);
background: linear-gradient(to right, #4A00E0, #8E2DE2);
}
body>div {
flex: 1;
}
button {
border: none;
font-weight: 900;
padding: 10px 25px;
text-transform: uppercase;
font-size: 18px;
margin: 0 5px;
border-radius: 40px;
}
.points {
margin-bottom: 25px;
}
.points .stats {
font-size: 108px;
font-weight: bold;
color: #FFEB3B;
}
button[name=start] {
background-color: #4caf50;
color: #fff;
}
button[name=click] {
background-color: #F44336;
color: #fff;
}
button[disabled] {
background-color: #9E9E9E;
cursor: not-allowed;
}
.copyright {
margin-top: 45px;
color: #fff;
}
.copyright ul {
margin: 0;
list-style: none;
padding: 0;
}
.copyright ul li {
display: inline-block;
margin: 0 5px;
font-weight: 900;
font-size: 13px;
}
.copyright ul li a {
text-decoration: none;
padding: 3px 8px;
border-radius: 4px;
background: #fff;
}