-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
39 lines (35 loc) · 784 Bytes
/
style.css
File metadata and controls
39 lines (35 loc) · 784 Bytes
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
body {
margin: 0;
padding: 0;
font-size: 16px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.content {
max-width: 769px;
margin: 5% auto;
padding: 10px;
box-sizing: content-box;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
background: #fff;
z-index: 1;
line-height: 1.5em;
}
.text-center {
text-align: center;
}
.content .btn {
display: inline-block;
margin-bottom: 10px;
padding: 7px 10px;
border-radius: 5px;
font-size: 15px;
box-shadow: 0 1px 3px rgba(0,0,0,0.3);
background: #000;
color: #fff;
text-decoration: none;
border: none;
cursor: pointer;
}
.content .sm {
font-size: 10px;
}