-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.css
More file actions
126 lines (100 loc) · 1.62 KB
/
Copy pathmenu.css
File metadata and controls
126 lines (100 loc) · 1.62 KB
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
main
{
margin-top: 100px;
margin-left: 17%;
margin-right: 20px;
margin-bottom: 20px;
text-align: justify;
background-color: #3b3e47;
color: white;
border-radius: 10px;
border: 1px solid black;
padding: 10px;
box-shadow: 10px 10px #777777;
min-width: 240px;
}
a
{
text-decoration: none;
}
a h1
{
text-align: center;
border: 1px solid ;
border-radius: 10px;
margin-left: 30px;
margin-right: 30px;
padding:10px;
}
a h1:hover
{
box-shadow: 0 8px 40px rgba(13, 12, 0, 1);
color: white;
}
.left
{
position: fixed;
background: #1e2026;
height: 100%;
width: 16%;
min-width: 100px;
border: 1px solid black;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
box-shadow: 5px 10px #777777;
}
#myMenu
{
padding-left: 3%;
}
.left ul li
{
padding: 15px;
font-weight: bold;
list-style: none;
}
.left ul a li
{
text-decoration: none;
color: #ff8900;
font-weight: bold;
font-size: 18px;
}
.left ul a li:hover
{
color:white;
background-color: #494a4d;
}
dt
{
margin-top: 38px;
font-size: 22px ;
color: gray;
font-weight: bold;
}
h1
{
font-size: 40px;
color: #ff8900;
}
dd
{
margin-bottom: 15px;
font-size: 18px ;
margin-left: 0px;
}
dl
{
margin-bottom: 100px;
}
@media screen and (max-width: 600px)
{
main
{
margin-left: 15px;
}
.left
{
display: none;
}
}