forked from magenta/magenta-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (54 loc) · 1.01 KB
/
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
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 20px;
font: 300 16px/1.5 "Roboto", Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
color: #111;
background-color: #fdfdfd;
-webkit-font-smoothing: antialiased;
width: 100%;
max-width: 1000px;
}
section {
background: #F2F2F2;
padding: 14px;
margin-bottom: 48px;
}
a {
color: #2a7ae2;
text-decoration: none;
}
a:visited {
color: #1756a9;
}
a:hover {
color: #111;
text-decoration: none;
}
button, .button {
font-family: "Roboto", Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
text-transform: uppercase;
font-weight: 700;
font-size: 16px;
padding: 4px 14px;
margin-right: 8px;
border: 3px solid #222;
background: transparent;
outline: none;
color: #222;
background: white;
cursor: pointer;
}
button:hover {
background: #6FC9C6;
color: white;
}
button[disabled] {
opacity: 0.5;
}
.image {
margin-right: 10px;
outline: 3px solid #222;
}