-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
63 lines (54 loc) · 969 Bytes
/
Copy pathstyles.css
File metadata and controls
63 lines (54 loc) · 969 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
62
63
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;600&display=swap');
body {
background-color: #e5e8e8;
color: #4e545c;
margin: 0;
font-family: 'Quicksand';
}
body.dark-mode {
background-color: #000401;
color: #e5e8e8;
}
main {
height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
footer {
width: 100%;
background-color: #4e545c;
padding: 16px;
color: #e5e8e8;
position: fixed;
bottom: 0;
text-align: center;
font-weight: 400;
}
footer.dark-mode {
background-color: #8d9797;
color: #000401;
}
button {
border-radius: 40px;
font-size: 1.5rem;
height: 60px;
width: 200px;
border: none;
background-color: #4e545c;
color: #e5e8e8;
transition: all 0.5s linear;
}
button:hover {
background-color: #000401;
}
button.dark-mode {
background-color: #e5e8e8;
color: #4e545c;
}
button.dark-mode:hover {
background-color: #4e545c;
color: #e5e8e8;
}