forked from adjust/web_sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (54 loc) · 814 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
61
62
63
body {
font-family: 'Helvetica', sans-serif;
}
.container {
margin: 20px;
}
.content {
width: 700px;
margin: 0 auto;
}
h1 {
text-align: center;
color: #666;
font-size: 20px;
margin-bottom: 50px;
}
h5 {
margin-bottom: 2px;
color: #999;
font-weight: normal;
}
button {
display: block;
margin: 0 auto 20px;
width: 200px;
font-size: 15px;
padding: 10px;
border: 1px solid #999;
background: #ddd;
box-shadow: none;
outline: none;
cursor: pointer;
color: #555;
}
button:hover {
background: #eee;
}
pre {
border: 2px solid #ccc;
background-color: #fefefe;
min-height: 100px;
padding: 10px;
overflow: auto;
white-space: pre-line;
line-height: 20px;
color: #ccc;
margin-top: 30px;
}
pre.success {
color: #2b8b00;
}
pre.error {
color: #e02d45;
}