-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
53 lines (41 loc) · 825 Bytes
/
main.css
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
.main {
/* backdrop-filter: blur(5.5px); */
/* background-color: rgba(250, 250, 250, 0.25); */
background-color: rgba(36,37,47,255);
color: white;
height:calc(100vh - 50px);
margin-left:calc( 250px - 60px);
}
.flex_column{
display:flex;
flex-direction: column;
width:100%;
height:100vh;
border-left:1px solid white;
padding:60px;
}
@media only screen and (max-width: 900px) {
nav{
position:fixed;
min-height:fit-content;
bottom:0;
background-color: red;
z-index:5;
display:flex;
flex-direction: row;
width:100%;
justify-content: space-between;
}
nav .item .link .text{
display:none;
}
nav span{
display:none;
}
.header .title .icon{
display:none;
}
.main{
margin-left:0;
}
}