-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathapp.css
120 lines (99 loc) · 1.72 KB
/
app.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
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
#footer a {
text-decoration: underline;
}
.App {
text-align: center;
}
.App-logo {
animation: App-logo-spin infinite 20s linear;
height: 40vmin;
}
.App-header {
background-color: #282c34;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: .9rem;
color: white;
width: 100%;
z-index: 10;
position: sticky;
top: 0;
}
.App-link {
color: #61dafb;
}
.App-header input {
font-size: 1em;
max-width: 90vw;
-webkit-appearance: none;
background: #282c34;
border: none;
border-bottom: 1px solid #fff;
color: #fff;
}
.App-header input:focus {
outline: none;
}
main {
max-width: 70ch;
margin: 0 auto;
font-size: 1.5em;
padding: 5px;
}
main p {
line-height: 1.6em;
}
main p a {
color: inherit;
text-decoration: none;
}
.icon {
vertical-align: top;
margin: auto 0.3em;
width: 22px;
height: 1.6em;
}
.inline {
cursor: pointer;
display:inline;
}
.bold {
font-weight: bold;
}
.arrow {
border-left: 5px solid transparent;
border-right: 5px solid transparent;
display: inline-block;
margin-right: 5px;
margin-left: 5px;
margin-bottom: 5px;
}
.arrow-up {
border-bottom: 5px solid black;
}
.arrow-down {
border-top: 5px solid black;
}
@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}