-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.css
124 lines (103 loc) · 2.56 KB
/
demo.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/*********************
for this demo
*********************/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,800&display=swap');
html { transition: font-size .5s ease; }
body { font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; padding: 0;}
.row > * {
background: #cfdaf1 ;
outline: 2px solid #fff;
outline-offset: -1px;
min-height: 4rem;
}
header {
padding: 3rem 2rem 0;
background: #0D4EDC;
color: white;
}
header a {color: #a1aabf; text-decoration: underline; }
header a[href] {color: #FFF; text-decoration: none; }
header h1 {
font-size: 2.75rem;
font-weight: 800;
text-shadow: -0.1em 0.1em 0 #0D4EDC, 0rem 0.1em 0 #0D4EDC, -0.2em 0.2em 0 rgba(0, 0, 0, 0.2);
}
header h1 em {
font-style: normal;
font-size: 1.87em;
line-height: 1;
}
header hr {
border-color: #fff !important;
}
header .row > * {
padding: 0;
background: none;
outline: none;
}
.row.no-gutter > * {
}
.no-row-padding {
background: none;
outline: none;
}
h1, h2, h3 {
margin: 0 0 .5em;
font-weight: 100;
text-transform: uppercase;
}
h1 {
font-size: 2.75rem;
font-weight: 800;
}
h2 {
font-family: 'Oswald', sans-serif;
}
p { margin: 0 0 1em; line-height: 1.6 }
hr {
height: 0;
border: 0;
border-bottom: 1px solid;
border-color: #aaa !important;
outline: none !important;
margin: 3rem 0;
}
pre {
font-family: 'Roboto Mono', monospace;
outline: 5px solid rgba(0,0,0,.06);
background: white !important;
overflow-x: auto;
outline-offset: -5px;
}
a {color: #52555c; text-decoration: underline; }
a[href] {color: #0D4EDC; text-decoration: none; }
strong { font-weight: normal; color: #FF00A2; text-shadow: .5px 0 #FF00A2; }
dt, dd {
display: inline-block;
}
dt { width: 20%; color: #FF00A2 }
dd { width: 75%; margin: 0; }
@media (min-width: 0em) {
.demo-hilite-medium,
.demo-hilite-large { display: none; }
.demo-hilite-small { display: inline; }
.demo-bold-small { color: #FF00A2; }
.demo-bold-medium { color: inherit; }
.demo-bold-large { color: inherit; }
}
@media (min-width: 40em) {
.demo-hilite-small,
.demo-hilite-large { display: none; }
.demo-hilite-medium { display: inline; }
.demo-bold-small { color: inherit; }
.demo-bold-medium { color: #FF00A2; }
.demo-bold-large { color: inherit; }
}
@media (min-width: 64em) {
.demo-hilite-small,
.demo-hilite-medium { display: none; }
.demo-hilite-large { display: inline; }
.demo-bold-small { color: inherit; }
.demo-bold-medium { color: inherit; }
.demo-bold-large { color: #FF00A2; }
}