-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss.html
148 lines (120 loc) · 2.65 KB
/
css.html
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
<!-- Bootstrap 5 -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- Jquery CSS -->
<link rel="stylesheet" type="text/css" href="https://code.jquery.com/ui/1.10.0/themes/base/jquery-ui.css" />
<!-- PT Sans -->
<link rel="stylesheet" href="https://use.typekit.net/egy7vef.css">
<!-- Custom styles. -->
<style>
/* * {
// border: 2px solid red;
} */
body {
display: flex;
flex-direction: column;
max-width: 300px;
height: 100vh;
background: #2E2F2D;
font-family: pt-sans, sans-serif;
color: #F7F7F7;
}
header {
display: flex;
background: #383838;
}
h1 {
flex: 4;
padding-left: 5px;
margin: 0;
font-family: pt-sans-narrow, sans-serif;
font-weight: 700;
}
h2 {
padding-top: 10px;
font-size: 16px;
}
.btn-container {
display: flex;
justify-content: space-evenly;
}
.dropbtn {
flex: 1;
height: 100%;
color: white;
background: #383838;
border: 0;
padding: 0 15px;
}
main {
margin: 0 0;
padding: 0 2.5%;
}
footer {
margin-top: auto;
padding: 20px 2.5%;
background: #383838;
text-align: center;
font-size: 11px;
}
footer a, a:hover, a:active {
color: #F7F7F7;
}
.spinner-border {
display: none;
margin-left: 5px;
}
.spinner {display: inline-block !important;}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
color: black;
right: 0;
position: absolute;
background-color: #f1f1f1;
min-width: 300px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content button {
display: block;
width: 100%;
padding: 5px 0px;
text-align: left;
border: none;
}
.dropdown-content button:hover {background-color: #ddd}
.dropdown-content p {
margin: 2px;
padding-left: 5px;
display: inline-block;
}
/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}
.hide {display:none;}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}
.form-check, .form-switch {
padding: 10px;
}
.form-check-input {
position: absolute;
right: 10px;
z-index: 0;
}
.form-check-input[type=checkbox]:checked {
background-color: #ffd966;
}
.form-switch .form-check-input:checked[type=checkbox]:after {
background-color: #FBA922;
}
.form-check-input:checked[type=checkbox]:focus {
background-color: #ffd966;
}
</style>