-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
61 lines (51 loc) · 917 Bytes
/
index.css
File metadata and controls
61 lines (51 loc) · 917 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Poppins:wght@400;700&display=swap');
body {
font-family: 'Open Sans', sans-serif;
color: white;
background-color: #242424;
margin: 0 auto;
padding: 2rem;
max-width: 768px;
}
.dark-mode {
background-color: white;
color: black;
}
.secret {
font-family: "NuvCTF{3_S3phI}"
}
h1, h2, h3 {
font-family: 'Poppins', sans-serif;
color: #ffba44;
}
h2 {
margin: 0.3rem 0;
font-size: 1.2rem;
}
h3 {
margin: 0.2rem 0;
font-size: 1rem;
}
a {
color: #ffba44;
text-decoration: none;
}
a:hover {
opacity: .8;
transition: .5s;
}
p {
line-height: 1.5rem;
font-size: 0.9rem;
}
button {
border-radius: 0px;
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}