-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
79 lines (68 loc) · 1.29 KB
/
stylesheet.css
File metadata and controls
79 lines (68 loc) · 1.29 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
html{
background-color: #161D23;
}
#navbar{
overflow: hidden;
transition: ease-in-out 0.5s;
}
.sticky {
background-color: #212c35;
padding-top: 10.5px;
position: fixed;
top: 0;
left: 0;
width: 100%;
}
.sticky + .content {
padding-top: 60px;
}
p, ul, ol{
color: white;
font-size: 30px;
font-family: 'Calibri';
}
ul{
list-style-type: circle;
}
#buttons {
display: grid;
float: right;
grid-template-columns: repeat(4, 1fr);
gap: 8px;
padding-top: 12.5px;
padding-bottom: 10.5px;
padding-right: 0.2%;
}
#buttons a{
text-decoration: none;
padding: 10px 50px;
display: inline;
align-items: center;
justify-content: center;
cursor: pointer;
font-family: "Audiowide";
text-align: center;
border-radius: 10px;
border: 3.5px solid #198CA3;
background: #3BC5E1;
color: #000000;
transition: ease-in-out 0.5s;
}
#buttons a:hover{
background: #0F5361;
color:#ffffff;
}
#buttons a.active{
background: #0F5361;
color:#ffffff;
}
#navbar .img1{
width: 26%;
padding-left: 1%;
padding-top: 6.5px;
padding-bottom: 14.5px;
transition: all 0.5s;
}
#navbar .img1:hover{
width: 26.5%;
}