-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (53 loc) · 1016 Bytes
/
style.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
body {
background-color: #eee;
color: #444;
font-family: -apple-system, helvetica;
font-size: 1.25rem;
}
main,
header {
margin-left: auto;
margin-right: auto;
max-width: 50rem;
text-align: center;
}
h1 {
color: #ccc;
font-weight: normal;
font-size: 2rem;
}
h2 {
font-size: 4rem;
color: #444;
}
body {
padding-top: 4rem;
padding-bottom: 4rem;
}
html {
display: flex;
justify-content: center;
align-items: center;
min-height: 100%;
padding: 1rem;
box-sizing: border-box;
}
input[type=button] {
font-size: inherit;
padding: 1rem 2rem;
-webkit-appearance: button; /* for input */
-webkit-user-select: none; /* for button */
-moz-user-select: none;
-ms-user-select: none;
border-radius: 0.5rem;
box-shadow: none;
-webkit-box-shadow: none;
border: none;
background-color: #ccc;
color: #fff;
cursor: pointer;
}
input[type=button]:hover,
input[type=button]:active {
background-color: #444;
}