forked from mixi-inc/JavaScriptTraining
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (65 loc) · 1.3 KB
/
style.css
File metadata and controls
75 lines (65 loc) · 1.3 KB
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
.js-training-container {
position: relative;
}
.js-training {
position: relative;
z-index:10;
display: -webkit-flex;
display: flex;
list-style: none;
margin: 10px;
padding: 0;
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.js-training li {
-webkit-flex: 1;
flex: 1;
margin: 0;
padding: 0;
height: 40px;
line-height: 40px;
text-align: center;
color: white;
font-weight: bold;
font-size: 130%;
text-shadow: 0 1px 0 hsla(0, 0%, 0%, 0.3);
}
.js-training #firebrick {
background-color: firebrick;
font-weight: normal;
}
.js-training #chocolate {
background-color: chocolate;
font-weight: normal;
}
.js-training .mediumseagreen {
background-color: mediumseagreen;
font-weight: normal;
}
.js-training .turquoise {
background-color: turquoise;
font-weight: normal;
text-align: right;
}
.js-training .turquoise input {
background-color: turquoise;
background-color: hsla(0, 0%, 0%, 0.1);
box-sizing: border-box;
width: 60px;
height: 40px;
border: none;
margin-left: 30%;
padding: 0 0 0 12px;
font-size: 50%;
color: inherit;
text-shadow: inherit;
text-align: center;
vertical-align: top;
}
.js-training .steelblue {
background-color: steelblue;
margin: 0;
height: 40px;
font-size: 1;
font-weight: normal;
}