-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (59 loc) · 1.01 KB
/
style.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
html,h2,h3 {
color: black;
}
body {
padding: 0;
margin: 0;
background-color: white;
/* background: rgb(80,115,150);
background: linear-gradient(90deg, rgba(80,115,150,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%); */
}
.wrapper {
margin-right: auto; /* 1 */
margin-left: auto; /* 1 */
max-width: 960px; /* 2 */
padding-right: 10px; /* 3 */
padding-left: 10px; /* 3 */
}
.nav {
text-align: center;
}
ul {
display: block;
}
li {
display: inline;
font-weight: bold;
color: black;
margin: 10px;
}
a {
text-decoration: none;
color: rgb(163, 83, 8);
}
a:hover {
color: lightslategray;
text-decoration: none;
}
div#svg3 {
left: 35%;
bottom: 50px;
margin: auto;
padding-top: 25px;
}
.footer {
padding: 25px;
background-color: #303846;
}
.footer h3 {
color: white;
text-align: center;
}
hr#new2 {
color: lightslategray;
}
/* Dark Mode */
/* .dark-mode {
background: rgb(39,38,47);
background: linear-gradient(90deg, rgba(39,38,47,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
} */