-
Notifications
You must be signed in to change notification settings - Fork 0
/
side.css
69 lines (59 loc) · 916 Bytes
/
side.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
a {
color: #273869;
text-decoration: none;
}
#menu {
position: fixed;
z-index: 9;
top: 0px; left: -280px;
width: 320px; height: 100%;
background: #FFEB3B;
text-align: center;
padding: 0px;
transition: left 0.3s;
}
#menu:hover{
left: 0px;
}
#menu_list {
padding: 5px;
background: #FFFA7A;
}
#menu_list li{
list-style: none;
cursor: pointer;
padding: 5px;
background: #273869;
color: #CCF3FF;
margin-top: 5px;
}
#menu_list li:hover{
/*background: #273869;*/
color: #FFFA7A;
}
#menu_list li:active{
background: #FFFA7A;
color: #273869;
}
#list_skill {
transition: 0.3s;
padding: 0;
}
#list_skill li{
list-style: none;
cursor: pointer;
padding: 5px;
background: #CCF3FF;
color: #273869;
}
#list_skill li:hover {
background: #273869;
color: #FFFA7A;
}
#menu_rotLogo {
height: 40px;
position: absolute;
left: 185px; bottom: 70px;
filter:flipv();transform:rotate(270deg);
}