-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (43 loc) · 759 Bytes
/
style.css
File metadata and controls
47 lines (43 loc) · 759 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
* {
margin: 0;
padding: 0;
direction: rtl;
box-sizing: border-box;
text-decoration: none;
}
body {
display: flex;
justify-content: center;
align-items: center;
background: #1f2124;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
height: 100vh;
}
nav {
display: flex;
justify-content: space-between;
box-shadow: 2px 3px rgba(0, 0, 0, 0.1);
border-radius: 8px;
width: 600px;
height: 50px;
position: relative;
background-color: #333;
}
nav a {
font-size: 20px;
color: #f4f4f4;
line-height: 50px;
text-align: center;
z-index: 1;
padding: 0 20px;
}
.indicator {
position: absolute;
height: 15%;
z-index: 0;
bottom: 0;
border-radius: 8px;
transition: left .5s;
background-color: rgb(83, 83, 223);
width: 78px;
}