-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
44 lines (42 loc) · 1.01 KB
/
style.scss
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
* {
padding: 0;
margin: 0;
}
body {
background-image: url(./images/bg.jpg);
background-repeat: no-repeat;
background-size: cover;
}
.dock-container {
height: 16vh;
width: 100%;
position: absolute;
bottom: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
.dock {
height: 10vh;
width: 84%;
backdrop-filter: blur(16px);
border: 1px solid rgba(128, 128, 128, 0.2);
border-radius: 2.6vh;
.icons {
width: 80*6px;
height: 100%;
display: flex;
align-items: center;
margin: auto;
.app-icons {
transition: height 0.4s ease, margin 0.4s ease;
height: 100%;
margin: 0 5px;
&:hover {
height: 120%;
margin: 0 10px 20px 10px;
}
}
}
}
}