-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (47 loc) · 1.18 KB
/
style.css
File metadata and controls
50 lines (47 loc) · 1.18 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
/* cred traidev official on yt */
body{
margin: 0 0 55px 0;
background-color: rgb(172, 226, 226);
}
h1{
color: rgb(12, 53, 133);
font-size: 24px;
padding-left: 20px;
padding-top: 20px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.nav {
position: fixed;
bottom: 0;
width: 100%;
height: 55px;
box-shadow: 0 0 3px rgba(0,0,0,0.2);
background-color: #ffffff;
overflow-x: auto;
display: flex;
}
.nav-link{
display: flex;
flex-direction: column;
align-items:center;
justify-content: center;
flex-grow: 1;
min-width: 50px;
overflow: hidden;
white-space: nowrap;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 14px;
color: rgb(12, 53, 133);
text-decoration: none;
-webkit-tap-highlight-color: transparent;
transition: background-color 0.1s ease-in-out;
}
.nav-link:hover {
color: rgb(172, 226, 226);
}
.active{
color: rgb(172, 226, 226);
}
.nav-icon{
font-size:18px;
}