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
95 lines (80 loc) · 1.56 KB
/
style.css
File metadata and controls
95 lines (80 loc) · 1.56 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
.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;
}
.js-training .turquoise {
background-color: turquoise;
}
.js-training blockquote {
background-color: steelblue;
margin: 0;
height: 40px;
font-weight: bold;
font-size: 1;
}
.js-training [data-js-training="blueviolet"] {
background-color: blueviolet;
}
.js-training #brown {
background-color: brown;
font-weight: normal;
}
.js-training #darkorange {
background-color: darkorange;
font-weight: normal;
}
.js-training .limegreen {
background-color: limegreen;
}
.js-training .mediumturquoise {
background-color: mediumturquoise;
}
.js-training p {
margin: 0;
padding: 0;
background-color: cornflowerblue;
}
.js-training [data-js-training="darkorchid"] {
background-color: darkorchid;
}
.js-training-trick {
z-index: 1;
position: absolute;
top: 0;
height: 40px;
line-height: 40px;
text-indent: 60%;
}