-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (40 loc) · 691 Bytes
/
style.css
File metadata and controls
48 lines (40 loc) · 691 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
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
[hidden] {
display: none !important;
}
/* Nav bar styling */
ul.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 10;
list-style-type: none;
margin: 0;
padding: 10px;
overflow: hidden;
background-color: #0C2136;
}
ul.navbar li {
float: right;
}
ul.navbar li a {
display: block;
color: white;
text-align: center;
margin: 10px 20px;
text-decoration: none;
transition-duration: 0.3s;
}
ul.navbar li.register {
border-radius: 15px;
background-color: #123345;
}
ul.navbar li a:hover {
transform: scale(1.2);
}