-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (86 loc) · 1.39 KB
/
style.css
File metadata and controls
104 lines (86 loc) · 1.39 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
* {
margin: 0;
padding: 0;
list-style: none;
box-sizing: border-box;
text-decoration: none;
}
body {
font-family: "SF Pro Text", "Myriad Set Pro", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
font-weight: 400;
transition: .5s;
}
.navbar {
background-color: #323232;
height: 45px;
padding: 1em;
width: 100%;
}
.navbar-menu {
font-size: 14px;
margin: 0 auto;
width: 80%;
}
.navbar-menu ul {
display: flex;
color: white;
justify-content: center;
}
.navbar-menu ul li {
margin: 0 3em;
}
.navbar-menu ul li a {
color: white;
transition: .3s;
}
.navbar-menu ul li a:hover {
color: gray;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 5em;
text-align: center;
}
.container h2 {
font-weight: 400;
font-size: 32px;
}
.container h3 {
font-weight: 600;
font-size: 64px;
}
.container a {
font-size: 24px;
font-weight: 400;
color: #0070c9;
margin: 0 1em;
}
.container a:hover {
text-decoration: underline;
}
.container img {
margin-top: 3em;
max-width: 65%;
}
.container-links {
display: flex;
margin: 1.5em 0;
}
#btn-toggle {
cursor: pointer;
transition: .5s;
}
#btn-toggle:hover {
transform: rotateZ(180deg);
}
.dark-mode {
color: white;
background-color: #1c1c1c;
transition: 0.5s;
}
.dark-mode .navbar {
background-color: #000;
}