-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimstyle.css
105 lines (92 loc) · 1.51 KB
/
simstyle.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
.title{
display: flex;
justify-content: center;
}
.header {
top: 300px;
float: left;
}
.simall{
margin: 3em;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: bisque;
border: solid black;
}
.auto{
margin : 1em;
padding: 1em;
text-align: center;
justify-content: center;
background-color: aliceblue;
}
.header {
position: fixed;
margin : 20px;
border : solid lightseagreen;
background-color: #F1F1F1;
text-align: center;
}
.top{
/* position: absolute; */
margin: 0;
justify-content: space-around;
background: rgb(42, 41, 41);
}
.top:after{
content: '';
clear:both;
display: block;
}
.top ul{
list-style: none;
margin: 0;
}
.top > ul > li{
float: left;
position: relative;
}
.top ul li a {
text-decoration: none;
color: #929191;
padding: 15px 20px;
display: block;
}
.top ul li:hover a{
background: #032045;
}
.top ul ul{
position: absolute;
padding: 0;
min-width: 160px;
display: none;
top: 100%;
left: 0;
}
.top ul li:hover > ul{
display: block;
}
.top ul ul li:hover a{
background: wheat;
}
.top ul ul li{
position:relative;
}
.top ul ul ul {
top: 0;
left: 100%;
}
.top ul ul ul li:hover a{
background: white;
}
.bal{
margin: 3px;
padding: 3px;
border: solid rgb(27, 32, 41);
}
/*footer styling*/
footer{
text-align: center;
}