forked from AM1CODES/Poke-Dex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.css
68 lines (64 loc) · 951 Bytes
/
about.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
:root {
--bg-color: black;
--font-color: white;
}
.lightMode {
--bg-color: white;
--font-color: black;
}
nav {
color: white;
background-color: black;
}
#para {
text-align: center;
color: var(--font-color);
}
body {
background-color: var(--bg-color);
font-family: "Righteous", cursive;
}
h1 {
color: var(--font-color);
text-align: center;
margin-top: 90px;
margin-bottom: 40px;
}
#one {
background-color: rgb(40, 103, 178);
}
#two {
background-color: rgb(33, 31, 31);
}
#three {
background-color: rgb(225, 48, 108);
}
#buttons {
margin-bottom: 10px;
}
.navTitle {
color: #ffffff;
padding-left: 50px;
size: 50px;
}
.itemNav {
padding: 15px;
cursor: pointer;
}
.about-title {
padding-top: 6%;
}
@media only screen and (max-width: 600px) {
.display-3 {
font-size: 4rem;
}
.lead {
font-size: 1.6rem;
}
.gallery-head {
font-size: 2rem;
}
.navTitle {
padding-left: 3px;
}
}