forked from acityinohio/ponzico
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
123 lines (108 loc) · 1.59 KB
/
styles.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
* {
box-sizing: border-box;
}
html,
body {
margin: 0;
padding: 0;
/* OPTIMIZE ALL THE READING! */
text-rendering: optimizeLegibility;
/* KERN ALL THE FONTS! */
font-feature-settings: "kern" on;
}
html {
font-family: sans-serif;
font-weight: 300;
font-size: 1em;
}
@media (min-width: 42em) {
html {
font-size: 1.5em;
}
}
body {
color: #515151;
background-color: #333;
}
a {
color: #268bd2;
text-decoration: none;
}
a:hover,
a:focus {
text-decoration: underline;
}
h1, h2, h3, h4, h5, h6 {
text-align: center;
font-family: monospace;
margin-bottom: .5rem;
line-height: 1.25;
color: #aaa;
font-weight: 400;
}
h1 {
margin-top: 3rem;
font-size: 6rem;
}
h2 {
margin-top: 2rem;
font-size: 2rem;
}
h3 {
margin-top: 1.5rem;
font-size: 1.5rem;
}
h3.eth {
word-wrap: break-word;
}
p {
text-align: center;
}
img {
display: block;
max-width: 100%;
margin: 0 0 1rem;
border-radius: 5px;
}
form {
text-align: center;
margin: 0 auto;
width: 12em;
}
input {
font-size: 1rem;
text-align: center;
border: 0;
outline: 0;
background: transparent;
border: 1px solid #268bd2;
color: #268bd2;
}
input[type="button"]{
margin-top: 0.5em;
padding: 0.5em;
}
input[type="button"]:active {
border: 1px solid #515151;
color: #515151;
}
.container {
animation: fadein 1.5s;
max-width: 42rem;
height: 100%;
padding-left: 1rem;
padding-right: 1rem;
margin-left: auto;
margin-right: auto;
background-color: #111;
box-shadow: 0 0 4rem #268bd2;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Some footer nicities */
.footer {
font-size: 40%;
margin-top: 2rem;
}