forked from tinyspeck/hammock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
181 lines (158 loc) · 3.13 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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
body {
color: #555459;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 1.5rem;
}
#header {
position: fixed;
top: 0;
left: 0;
padding: 0;
background: white;
height: 60px;
width: 100%;
margin-bottom: 2rem;
font-size: 15px;
z-index: 10;
background: #fbfbfb;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
#header-inner {
width: 800px;
margin: 16px auto 10px auto;
}
#page-inner {
width: 800px;
margin: 80px auto 80px auto;
xborder: 1px solid black;
xpadding: 1em;
}
#slack_icon {
float: left;
display: inline-block;
margin-top: -3px;
margin-right: 0.4rem;
width: 32px;
height: 32px;
}
h1, h2, h3, h4 {
font-weight: 900;
font-family: 'Lato', sans-serif;
color: #555459;
-webkit-font-smoothing: antialiased;
margin: 0 0 1rem 0;
}
h1 a {
color: #555459;
text-decoration: none;
}
h1 a:hover {
color: #4A494D;
}
h2 {
font-size: 1.5rem;
line-height: 2rem;
}
.alert {
font-size: 0.9rem;
color: #c09853;
padding: 8px 35px 8px 14px;
margin-bottom: 20px;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
background-color: #fcf8e3;
border: 1px solid #fbeed5;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.alert-danger, .alert-error {
color: #b94a48;
background-color: #f2dede;
border-color: #eed3d7;
}
.btn {
background: #2a80b9;
color: white !important;
text-shadow: 0 1px rgba(0, 0, 0, 0.2);
-webkit-font-smoothing: antialiased;
font-family: 'Lato', sans-serif;
line-height: 1.2rem;
font-weight: 900;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
text-decoration: none;
border: none;
-webkit-border-radius: 0.25rem;
-moz-border-radius: 0.25rem;
border-radius: 0.25rem;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
vertical-align: bottom;
white-space: nowrap;
padding: 7px 14px 8px;
font-size: 15px;
}
.btn:hover, .btn:focus {
background: #439fe0;
color: white;
outline: none;
}
.btn:active, .btn.active {
background: #439fe0;
color: white;
-webkit-box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.25);
-moz-box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.25);
box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.25);
}
.btn-danger {
background: #d00000;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active {
background: #e60000;
}
.btn-warning {
background: #daa038;
}
.btn-warning:hover, .btn-warning:focus, .btn-warning:active {
background: #e8ac3c;
}
.btn-success {
background: #36a64f;
}
.btn-success:hover, .btn-success:focus, .btn-success:active {
background: #3ebd5a;
}
.godblock {
border: 1px solid #becccc;
-moz-border-radius: 15px;
border-radius: 15px;
background-image: url(https://slack.global.ssl.fastly.net/5065/img/stripes_bg.gif);
padding: 8px;
position: relative;
text-align: left;
}
.godblock pre {
margin: 0;
}
code {
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
padding: 2px 4px;
color: #d14;
background-color: #f7f7f9;
border: 1px solid #e1e1e8;
font-size: 0.8rem;
white-space: normal;
}
form {
margin: 0;
padding: 0;
}