forked from rufuspollock/s3-bucket-listing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
113 lines (93 loc) · 1.49 KB
/
main.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
body {
font-family: monospace;
font-size: 12px;
font-weight: 300;
color: #d3d3d3;
background-color: #1e1b25;
}
.title {
font-family: Overpass;
margin-left: 15;
margin-top: 50;
margin-bottom: 50;
font-size: 50;
font-weight: 100;
color: #d3d3d3;
}
.bucket {
font-size: 16px;
background-color: #1e1b25;
padding: 5 15;
}
.bucket:hover {
color: #1e1b25;
background-color: #b59ff6;
}
.bucket:hover h2 {
color: #4d0be6;
}
.bucket h2 {
color: #b59ff6;
}
h1 {
font-family: Overpass;
color: #b59ff6;
margin-left: 15;
}
h3 {
margin-left: 15;
}
.instructions {
font-family: Overpass;
font-size: 16px;
margin-left: 15;
margin-bottom: 40;
}
.error {
font-family: Overpass;
font-size: 16px;
margin-left: 15;
margin-bottom: 40;
color: red;
}
.warning {
font-family: Overpass;
font-size: 16px;
margin-left: 15;
margin-bottom: 40;
color: purple;
}
h2 {
font-family: Overpass;
margin-bottom: 0;
}
a:link {
color: #d3d3d3;
text-decoration: none;
}
a:visited {
color: #b1aeb6;
text-decoration: none;
}
a:hover {
color: #d3d3d3;
text-decoration: none;
}
a:active {
color: #d3d3d3;
text-decoration: none;
}
.trajectory {
background-color: #1e1b25;
padding: 5 15;
}
.trajectory:hover {
color: #1e1b25;
background-color: #b59ff6;
}
.trajectory:hover h2 {
color: #4d0be6;
}
.trajectory .label {
font-weight: bold;
}