-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
227 lines (189 loc) · 4.55 KB
/
styles.css
File metadata and controls
227 lines (189 loc) · 4.55 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
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100&display=swap');
[data-tab-content] {
display: none;
}
h2 {
color: white;
font-family: "JetBrains Mono", sans-serif;
}
h1 {
color: white;
font-family: "JetBrains Mono", sans-serif;
}
h4 {
color: white;
font-family: "JetBrains Mono", sans-serif;
font-size: 20px;
}
h3 {
color: white;
font-family: "JetBrains Mono", sans-serif;
}
h5 {
color: white;
font-family: "JetBrains Mono", sans-serif;
font-size: 20px;
}
p {
color: rgb(255, 255, 255);
font-family: "JetBrains Mono", sans-serif;
font-size: 20px;
}
a[href] {
color: #ff0000;
font-size: 20px;
}
h5 {
color: white;
font-family: "JetBrains Mono", sans-serif;
font-size: 20px;
}
h6 {
color: white;
font-family: "JetBrains Mono", sans-serif;
font-size: 20px;
}
.center {
text-align: center;
border: 3px solid green;
}
span {
color: white;
font-family: "JetBrains Mono", sans-serif;
font-size: 20px;
}
a {
text-decoration:none;
}
.alert {
padding: 20px;
background-color: #f44336;
color: white;
}
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}
.closebtn:hover {
color: black;
}
#beta {
position: fixed;
bottom: 5px;
right: 5px;
text-align: right;
color: red;
font-size: 1px;
}
h9 {
color: white;
font-family: "JetBrains Mono", sans-serif;
font-size: 10px;
}
.active[data-tab-content] {
display: block;
}
body {
padding: 0;
margin: 0;
}
.tabs {
display: flex;
list-style-type: none;
margin: 0;
padding: 0;
border-bottom: 1px solid rgb(255, 255, 255)
background-image:none;
background-color:transparent;
}
.tab {
color: rgb(201, 201, 201);
font-size: 20px;
cursor: pointer;
padding: 10px;
font-family: "JetBrains Mono", sans-serif;
}
.tab.active {
font-size: 20px;
color: rgb(255, 255, 255);
font-family: "JetBrains Mono", sans-serif;
}
.tab:hover {
color: rgb(255, 255, 255);
font-family: "JetBrains Mono", sans-serif;
.tab-content {
margin-left: 20px;
margin-right: 20px;
}
.nav_tabs ul {
background-image:none;
background-color:transparent;
}
a:hover, a:visited, a:link, a:active
{
text-decoration: none;
}
a:link {
color: white;
}
/* visited link */
a:visited {
color: white;
}
/* mouse over link */
a:hover {
color: white;
}
/* selected link */
a:active {
color: white;
}
span {
color: rgb(201, 201, 201);
font-size: 20px;
cursor: pointer;
padding: 10px;
font-family: "Source Sans Pro", sans-serif;
.menu-icon {
width: 24px;
height: 24px;
}
.tabs {
background-color: #35495e; /* Change the background color for the entire tab area */
padding: 10px; /* Add padding to control the space around the tab area */
border-radius: 10px; /* Round the corners of the tab area */
}
.tabs li {
display: inline; /* Display the tabs in a row */
padding: 10px; /* Adjust the padding around each tab */
margin: 5px; /* Add margin between each tab */
background-color: #2c3a4b; /* Change the background color of the tabs */
border-radius: 5px; /* Round the corners of the tabs */
cursor: pointer; /* Change cursor style on hover */
}
.tabs li.active {
/* Style for the active tab */
background-color: #35495e; /* Change the active tab's background color */
color: white; /* Change the text color of the active tab */
}
.tab {
display: inline-block; /* Display the social media links in a row */
padding: 10px; /* Adjust the padding around each link */
margin: 5px; /* Add margin between each link */
background-color: #2c3a4b; /* Change the background color of the links */
border-radius: 5px; /* Round the corners of the links */
cursor: pointer; /* Change cursor style on hover */
}
.tab a {
text-decoration: none; /* Remove the underline from the anchor tags */
color: white; /* Set the text color of the links */
}
.tab a:hover {
text-decoration: underline; /* Underline the links on hover */
}