-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.css
More file actions
128 lines (127 loc) · 2.47 KB
/
home.css
File metadata and controls
128 lines (127 loc) · 2.47 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
127
128
*{
text-decoration: none;
color: #000000;
font-family:sans-serif;
}
body{
height: 100%;
/*background: red;*/
}
#top{
position: fixed;
z-index: 1;
height: 110px;
width: 100%;
margin: -8px;
padding: 5px;
background: linear-gradient(#F1F1F4, #FFFFFF) fixed;
}
/*#T{*/
/* transition-property: ease-in;*/
/* transition-duration: 3s;*/
/*}*/
#title{
/*position: absolute;*/
width: auto;
}
#navtop{
width: 100%;
height: 30px;
margin: 10px 0;
background: linear-gradient(#123456, #AFAFB3);
color: #FFFFFF;
border-radius: 10px;
}
#navtop ul li{
display: inline-block;
height: 16px;
width: 250px;
padding: 5px;
border-width: 2px;
border-style: solid;
border-color:transparent;
/*margin-bottom: 12px;*/
}
#navtop ul li:hover{
background: inherit;
border-style: solid;
border-color: #484848;
border-radius: 4px;
background: linear-gradient(#AFAFB3, #123456);
}
#navtop ul li:before{
content:"> ";
color: #FFFFFF;
visibility: hidden;
}
#navtop ul li:hover:before{
content: "> ";
visibility: visible;
color: #ABCDEF;
transform: rotatey(720deg);
transition-duration: 1s;
}
#navtop ul li:after{
content:" <";
color: #FFFFFF;
visibility: hidden;
}
#navtop ul li:hover:after{
content:" <";
visibility: visible;
color: #ABCDEF;
transform: rotatey(-360deg);
transition-duration: 1s;
}
#navtop ul > ul:hover{
/*background: linear-gradient(#123456, #AFAFB3);*/
color: red;
}
#navtop ul li a{
font-size: 14px;
color: #FFFFFF;
left: 0;
}
#navtop ul ul{
z-index: 10;
float: left;
display: block;
visibility: hidden;
background: linear-gradient(#AFAFB3, #123456);
height: 0;
margin: 0;
padding: 0;
}
#navtop ul li:hover ul{
/*display: block;*/
position: absolute;
visibility: visible;
height: auto;
transition-property: height;
transition-duration: 5s;
}
#navtop ul ul li{
display: block;
height: 16px;
width: 250px;
background: inherit;
border-width: 2px;
border-style: solid;
border-color: #484848;
border-radius: 4px;
margin-left: -7px;
margin-bottom: -2px;
padding: 5px;
transition: all ease-in-out;
transition: visibility 0;
}
#navtop ul ul li{
background: linear-gradient(#123456, #AFAFB3);
}
#iframe{
width: 99%;
margin-top: 120px;
padding: 0;
position: block;
border-style: hidden;
}