-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathstyles.css
More file actions
98 lines (85 loc) · 1.49 KB
/
styles.css
File metadata and controls
98 lines (85 loc) · 1.49 KB
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
/* Base styles */
body {
padding: 20px;
background: #f5f5f5;
font-family: Arial, sans-serif;
}
/* Top bar */
#topbar {
background: white;
padding: 15px;
margin-bottom: 20px;
border: 1px solid #ddd;
}
/* Tabs */
.tabs {
margin: 0 0 10px 0;
padding: 0;
list-style: none;
border-bottom: 1px solid #ddd;
}
.tabs li {
display: inline-block;
margin-right: 5px;
}
.tabs a {
display: block;
padding: 8px 12px;
text-decoration: none;
color: #333;
background: #f0f0f0;
border: 1px solid #ddd;
border-bottom: none;
}
.tabs .active a {
background: white;
border-bottom: 1px solid white;
margin-bottom: -1px;
}
/* Tab content */
.tabs-content {
background: white;
padding: 15px;
border: 1px solid #ddd;
border-top: none;
}
/* Form elements */
#td_addr,
#exampleUrls {
width: 100%;
padding: 8px;
margin-bottom: 10px;
border: 1px solid #ddd;
}
#fetch {
background: #0066cc;
color: white;
border: none;
padding: 8px 16px;
cursor: pointer;
}
/* Interactions */
#interactions {
margin-top: 20px;
background: white;
padding: 15px;
border: 1px solid #ddd;
}
#interactions h4 {
margin-top: 0;
padding-bottom: 8px;
border-bottom: 1px solid #eee;
}
/* Navigation */
.side-nav {
margin: 0;
padding: 0;
list-style: none;
}
.side-nav li {
padding: 8px 0;
border-bottom: 1px solid #f0f0f0;
}
.side-nav li:last-child {
border-bottom: none;
}