-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (84 loc) · 1.67 KB
/
style.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
*{
box-sizing: border-box;
margin: 0px;
padding: 0px;
}
.main{
width: 100%;
height: 100vh;
display: flex;
justify-content: space-between;
flex-direction: row-reverse;
cursor: pointer;
}
.navbar{
display: flex;
flex-direction: column
}
.navbar .slidbar
{
font-size: 2.1rem;
margin-top: 0.3rem;
font-family: 'Courier New', Courier, monospace;
margin-bottom: 2rem;
margin-left: 10px;
/* text-align: center; */
display: flex;
text-transform: capitalize;
text-shadow: 7px 6px 5px grey;
}
.navbar .slidbar span{
color: yellowgreen;
}
.navbar .slidbar i{
font-size: 20px;
position: relative;
right: -2.3rem;
color: red;
top: 10px;
}
.navbar a{
padding: 1.2rem ;
font-size: 1.6rem;
font-style: Open-Sans, sans-serif;
font-weight: 100;
text-decoration: none;
text-transform: capitalize;
}
.navbar a:hover{
background-color: grey;
text-transform: lowercase;
}
.sidebar{
transform: translate(0%);
transition: all 0.8s linear;;
width: 25%;
height: 100vh;
border-radius: 0rem;
background-color: aquamarine;
box-shadow: 2px 2px 18px 2px rgba(70, 67, 67,0.5);
}
.icon{
margin: 20px;
font-size: 2rem;
}
.lastIcon {
position: absolute;
bottom: 1.1rem;
left: 3rem;
display: flex;
justify-content: space-between;
/* align-items: center; */
}
.lastIcon i{
font-size: 2.1rem;
margin-left: 1.1rem;
}
.close{
/* display: none; */
/* visibility: hidden; */
transform: translate(-100%);
transition: all 1s linear;
border-radius: 2rem;
box-shadow: 2px 10px 18px 9px rgba(70, 67, 67,0.5);
}