forked from kajaveaniruddha/Dr.DeepikaGupta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nav.css
129 lines (111 loc) · 2.08 KB
/
nav.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
.sidenav {
background: #181818;
min-height: 100%;
width: 160px;
position: fixed;
overflow-x: hidden;
overflow-y: hidden;
display: flex;
flex-direction: column;
text-align: center;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.sidePhoto {
border-radius: 50%;
width: 60px;
height: 60px;
margin-top: 15px;
}
.sidePhoto-font {
width: 75px;
padding-bottom: 10px;
}
.sidenav .box1 ul li a {
border-bottom: 1.5px solid #232323;
font-size: 17px;
}
.sidenav .box1 ul li a {
padding: 15px;
color: #888888;
display: block;
transition: 0.3s ease-in-out;
}
.box1 ul li a:hover {
color: #0cf2cf;
transition: 0.3s ease-in-out;
}
.box2 ul li {
display: inline-flex;
padding: 2rem 7px;
}
.box2 ul li a {
color: #888888;
transition: 0.3s ease-in-out;
}
.box2 ul li a:hover {
color: #0cf2cf;
transition: 0.3s ease-in-out;
}
@media screen and (max-width: 825px) {
.sidenav {
position: relative;
float: right;
width: 3rem;
height: 3rem;
min-height: 5vh;
top: 0;
right: 0;
}
.sidenav .box ul li {
display: none;
}
.sidenav .box ul li.hamburgerMenu {
top: 0;
right: 0;
display: flex;
padding-right: 2%;
padding-top: 2%;
}
.sidenav.responsive {
width: 100%;
position: fixed;
z-index: 5;
top: 0;
right: 0;
bottom: 0;
height: auto;
}
.sidenav.responsive .box ul li.hamburgerMenu {
position: absolute;
top: 0;
right: 0;
padding: 0% 1% 1% 1%;
}
.sidenav.responsive .box1 {
line-height: 250%;
}
.sidenav.responsive .box ul {
position: relative;
float: inherit;
}
.sidenav.responsive .box ul li {
display: inline;
float: inside;
}
.sidenav.responsive .box li a {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.sidenav.responsive .box2 .fancyfonts {
display: flex;
justify-content: center;
}
}
@media screen and (max-width: 552px) {
h2 {
font-size: 75px;
}
}