-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
137 lines (115 loc) · 2.08 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
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
.home_flex_container {
display: flex;
flex-wrap: wrap;
flex-direction: row;
width: 100%;
}
.dash_image_card {
margin: 8px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
background-color: #2a475e;
transition: 0.3s;
border-radius: 5px;
cursor: pointer;
}
.dash_image_card:hover {
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2)
}
.card_caption {
text-align: center;
}
.input_button {
background-color: #c7d5e0;
border: none;
margin-top: 10px;
cursor: pointer;
}
.radio_rating {
margin-top: 8px;
margin-bottom: 8px;
}
/* Dropdown Button */
.dropbtn {
background-color: #4685aa;
color: #c7d5e0;
padding: 16px;
font-size: 16px;
border: none;
min-width: 100px;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
position: relative;
display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
/* background-color: #f1f1f1; */
right: 0;
min-width: 100px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content button {
padding: 12px 16px;
text-decoration: none;
display: block;
overflow: hidden;
width: 100%;
}
.dropdown:hover .dropdown-content {
display: block;
}
head {
position: fixed;
top: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
background-color: #1b2838;
color: #c7d5e0;
}
.dark_mode {
background-color: #1b2838;
color: #c7d5e0;
}
.active_tab {
background-color: #4685aa;
}
form {
padding: 4px;
}
input {
font-family: 'Courier New', Courier, monospace;
font-size: small;
}
table {
border-collapse: collapse;
}
td,
th {
border: 1px solid black;
padding: 12px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: visible;
}
li {
float: left;
}
li a {
display: block;
color: #c7d5e0;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #111;
}