forked from link2aws/link2aws.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
64 lines (58 loc) · 1006 Bytes
/
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
/* horizontal flex */
body > div {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
/* vertical flex */
body>div {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
flex-direction: column;
}
/* width of all content */
@media all {
.section {
width: 90%;
max-width: 90%;
}
}
@media screen and (min-width: 48em) {
.section {
width: 46em;
max-width: 46em;
}
}
input {
display: block;
width: 90%;
}
/* spacing between sections */
.section {
margin: 2em;
}
.container {
background-color: #eee;
border-radius: 1em;
margin: 1em;
}
/* deemphasis */
a.unimportant-link:link, a.unimportant-link:visited {
text-decoration: none;
}
.unimportant-text {
color: grey;
}
/* no JS warning */
noscript {
font-weight: bold;
color: darkorange;
}