-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (51 loc) · 1.06 KB
/
Copy pathstyle.css
File metadata and controls
62 lines (51 loc) · 1.06 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
@import url('https://fonts.googleapis.com/css2?family=Quicksand&family=Raleway:ital,wght@0,100..900;1,100..900&family=Square+Peg&display=swap');
*{
margin: 0;
padding: 0;
}
nav{
position: sticky;
font-size: 25px;
color: white;
background-color: black;
width: 100%;
display: flex;
justify-content: space-between;
align-items: baseline;
}
.github{
font-size: 15px;
color: white;
}
body{
height: 100vh;
width: 100vw;
display: flex;
flex-direction: column;
justify-content: start;
align-items: center;
font-family: "Quicksand", serif;
background-color: #fff7ec;
}
h1{
margin: 10px;
padding: 20px;
}
.visualizers{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
a{
text-decoration: none;
}
.bttn{
color: rgb(0, 0, 0);
background-color: #fce0ce;
padding: 12px;
border-radius: 50px;
margin: 12px;
font-size: 18px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}