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
100 lines (82 loc) · 1.44 KB
/
style.css
File metadata and controls
100 lines (82 loc) · 1.44 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
96
97
98
99
100
.js-training {
display: -webkit-flex;
display: flex;
list-style: none;
margin: 10px;
padding: 0;
}
.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;
}
.js-training #chocolate {
background-color: chocolate;
}
.js-training .mediumseagreen {
background-color: mediumseagreen;
}
.js-training .turquoise {
-webkit-flex: 0.5;
flex: 0.5;
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;
}
.js-training #darkorange {
background-color: darkorange;
}
.js-training .limegreen {
background-color: limegreen;
}
.js-training .mediumturquoise {
-webkit-flex: 0.5;
flex: 0.5;
background-color: mediumturquoise;
}
.js-training p {
margin: 0;
padding: 0;
background-color: cornflowerblue;
}
.js-training [data-js-training="darkorchid"] {
background-color: darkorchid;
}
@-webkit-keyframes moveHorizontal {
from {
left: -20%;
}
to {
left: 110%;
}
}
@-moz-keyframes moveHorizontal {
from {
left: -20%;
}
to {
left: 110%;
}
}