-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyletest.css
118 lines (87 loc) · 1.86 KB
/
styletest.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
:root{
--navcol: rgb(255, 255, 255);
--fontcol: grey;
--hovercol:#316DC3;
}
.sub-manu-1{
display:none;
}
.navbar-toggler:focus{
background-color: seagreen;
}
.active,.manu-bar li:hover{
background-color: var(--hovercol);
border-radius: 30px;
}
.manu-bar li:hover .sub-manu-1 {
display: block;
position: absolute;
background-color: var(--navcol);
columns: var(--fontcol);
}
.manu-bar li:hover .sub-manu-1 ul{
display: block;
list-style: none;
margin: 10px 0px;
padding: 0px;
}
.manu-bar li:hover .sub-manu-1 ul li{
min-width: 150px;
width: auto;
padding: 10px;
border-bottom: 1px dotted white;
background:transparent;
border-radius: 0;
text-align: left;
margin: 0px;
padding: 0px;
}
.manu-bar li:hover .sub-manu-1 ul li:last-child{
border-bottom: none;
}
.manu-bar li:hover .sub-manu-1 ul li a:hover{
color:rgb(15, 199, 15);
}
.fa-angle-right{
float: right;
}
.sub-manu-l2 {
display: none;}
.hoverthis:hover .sub-manu-l2 {
position: absolute;
display: block;
margin-left: 200px;
background-color: var(--navcol);
margin-top: -33px;
}
.hoverthis2:hover .sub-manu-l2{
margin-left: 165px;
}
.hoverthis2:hover .sub-manu-l2 ul{
min-width: 150px !important;
width: auto;
}
.hoverthis:hover .sub-manu-l2 ul {
min-width: 250px;
width: auto;
}
.sub-manu-l3 {
display: none;}
.hoverthis3:hover .sub-manu-l3 {
position: absolute;
display: block;
margin-left: 249px;
background-color: var(--navcol);
margin-top: -42px;
}
.navbar-brand img{
max-width: 225px;
height: 52px;
}
/* @media only screen and (min-width: 768px){}
.navbar-expand-lg .navbar-collapse {
display: -ms-flexbox!important;
display: flex!important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
} */