-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
87 lines (75 loc) · 1.34 KB
/
index.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-box-sizing: border-box;
}
body {
background-color: #353535;
font-family: 'Raleway', sans-serif;
}
.wrapper {
/*max-width: 600px;*/
margin: 0 auto;
width: 100%;
text-align: center;
padding: 2%;
background-color: #4c4c4c;
height: 500px;
}
h1 {
color: #ecf0f1;
}
h1 + p {
margin-bottom: 5%;
color: #3498db;
}
.scoreWrap {float: left;}
.timeWrap {float: right;}
.failWrap{margin:0 auto;width:218px;}
.outerWrap:after {
content: "";
display: block;
clear: both;
}
.bg {
background-color: #04AF71;
}
button {
border: none;
background-color: #3498db;
/*box-shadow: 0px 5px 0px 0px #0e6096;*/
outline: none;
/*border-radius: 5px;*/
padding: 10px 15px;
font-size: 22px;
text-decoration: none;
margin: 20px;
color: #fff;
position: relative;
display: inline-block;
cursor: pointer;
}
button:active {
transform: translate(0px, 5px);
-webkit-transform: translate(0px, 5px);
box-shadow: 0px 1px 0px 0px;
}
.scoreWrap p, .scoreWrap span, .timeWrap p, .timeWrap span, .failWrap p, .failWrap span, .resultWrap p {
font-size: 30px;
color: #F9F9F9;
}
.failWrap p, .failWrap span {
color: #c11a1a;
}
.wordsWrap {
margin-top: 50px;
}
.resultWrap {
margin-top: 30px;
}
.words span{
font-size: 30px;
letter-spacing: 1px;
color: #ECF0F1;
}