-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathb_nav_style.css
82 lines (69 loc) · 1.18 KB
/
b_nav_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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
list-style: none;
text-decoration: none;
font-family: 'Segoe UI';
}
body{
background-color: #f3f5f9;
}
nav{
position: fixed;
height: 100vh;
width: 200px;
margin-left: 100px;
font-size: 15px;
border-right: 1px solid black;
background: linear-gradient(#BBFFB660,#4A8B4F80);
}
nav .menu{
margin-left: 24.5px;
}
nav li{
margin-top: 10px;
}
nav .menu li a{
color: #4A8B4F;
font-weight: 500;
text-shadow: 1px 1px 10px rgb(255, 255, 255);
}
nav .menu li a:hover{
text-decoration: none;
font-weight: 500;
color: black;
}
#social_head{
color: #4A8B4F;
font-weight: 500;
text-shadow: 1px 1px 10px rgb(255, 255, 255);
display: flex;
justify-content: center;
}
#social_head:hover{
text-decoration: none;
font-weight: 500;
color: black;
}
#social_head_udr{
margin: 0;
width: 50px;
margin-left: auto;
margin-right: auto;
border-top: 1px solid rgb(0, 0, 0)
}
nav .social{
display: flex;
justify-content: center;
align-items: center;
}
nav .social li{
margin: 10px;
}
.container{
margin-left: 310px;
height: 200vh;
background-color: #e6e6e6;
border-left: 1px solid black;
}