-
Notifications
You must be signed in to change notification settings - Fork 4
/
styles.css
executable file
·75 lines (67 loc) · 1.04 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
/* Master Styles */
* {
margin: 0;
font-family: 'Raleway', serif;
}
html, body {
height: 100%;
}
h1 {
font-family: 'Fjalla One', sans-serif;
}
h2, h3, h4 {
font-family: 'Fjalla One', sans-serif;
}
body {
margin: 2em;
}
body, input[text], button {
color: #888;
font-family: Cambria, Georgia;
}
a {
cursor: pointer;
cursor: hand;
}
button {
font-family: Arial;
background-color: #eee;
border: none;
padding: 5px 10px;
border-radius: 4px;
cursor: pointer;
cursor: hand;
}
button:hover {
background-color: #cfd8dc;
}
button:disabled {
background-color: #eee;
color: #aaa;
cursor: auto;
}
/* Navigation link styles */
nav a {
padding: 5px 10px;
line-height: 30px;
text-decoration: none;
margin-top: 10px;
display: inline-block;
}
nav a.active {
color: #039be5;
}
.btn-primary {
border: 1px solid #579ed1;
background-color: transparent;
color: #579ed1;
}
.btn-primary:hover {
color: #fff;
background-color: #579ed1;
border: 1px solid #fff;
}
.pac-container {
color: red;
z-index: 100000;
}