-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
195 lines (182 loc) · 4.44 KB
/
styles.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
.dropDownMenu ul ul {
list-style: none;
}
.dropDownMenu > ul > li > ul > li {
/* applying css only for list items inside the second ul */
}
* {
margin: 0;
padding: 0;
}
body {
font-family: 'Roboto', sans-serif;
font-size: 13pt;
/*background-image: url("Capture.JPG");*/
background-size: cover;
}
/* Capture.JPG*/
/* Menu General Styles */
.menuBackground {
/*background-image: url("innerHeaderBg4.jpg");*/
/*background: rgba(108, 122, 137, 0.7);*/
background-image: linear-gradient(to right,rgba(108, 122, 137, 0.3) , rgba(108, 122, 137, 0.8));
/*background-size: 1000px 700px;*/
¡¡¡¡/*background-size:contain;*/
height:10vh;
}
/*.menuBackground_c {
background-image: url("DSC_0055-1.jpg");
background-size: contain;
}
.menuBackground_e {
background-image: url("IMG_6858-1-2.jpg");
background-size: contain;
}
.menuBackground_rtp {
background-image: url("IMG_6858-1-2.jpg");
background-size: cover;
}
.menuBackground_tip{
background-image: url("IMG_6858-1-2.jpg");
background-size: contain;
}*/
.introduction {
background: white;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 430px;
height:200px;
margin: auto;
box-shadow: 10px 10px 5px #888888;
border-radius: 15px;
z-index: 1;
font-size: 10pt;
}
.placeholder{
width: 500px;
height:10%;
margin: auto;
opacity:0;
}
.lv2title{
margin-left: 9em;
margin-bottom: 1em;
}
.equity{
/*background: white;*/
width: 100%;
height:1000px;
margin: auto;
z-index: 1;
}
.dropDownMenu a {
color: #FFFFFF; /*#F8A248; orange font color no hover */
}
.dropDownMenu,
.dropDownMenu ul {
list-style: none;
margin: 0;
padding: 0;
text-align:center;
}
.dropDownMenu li {
position: relative;
}
.dropDownMenu a {
padding: 10px 20px;
display: block;
text-decoration: none;
}
.dropDownMenu > li:nth-child(3) > a:hover { background: #e4781e; } /* Darker than #F8A248 first menu dark orange*/
.dropDownMenu > li:nth-child(4) > a:hover { background: #1a7874; } /* Darker than #20aea6 second menu dark green*/
.dropDownMenu > li:nth-child(5) > a:hover { background: #e4781e; } /* Darker than #F8A248 Third menu dark orange*/
.dropDownMenu > li:nth-child(6) > a:hover { background: #1a7874; } /* Darker than #20aea6 Fourth menu dark green*/
/* Level 1 Drop Down Menu */
.dropDownMenu > li {
display: inline-block;
vertical-align: top;
margin-left: -4px; /* solve the 4 pixels spacing between list-items */
}
.dropDownMenu > li:first-child {
margin-left: 0;
}
.dropDownMenu > li > a {}
.dropDownMenu > li > a:hover {}
/* Level 2 */
.dropDownMenu > li > ul {
text-align: left;
width: auto; /* change auto value with 200px if you want a bigger menu */
display: none;
background: #20aea6;/* Blue*/
position: absolute;
top: 100%;
left: 0;
z-index: 9999999; /* if you have YouTube iframes, is good to have a bigger z-index so the video can appear above the video */
}
.dropDownMenu > li:nth-child(3)> ul { background: #F8A248; }
.dropDownMenu > li:nth-child(4)> ul { background: #20aea6; }
.dropDownMenu > li:nth-child(5)> ul { background: #F8A248; }
.dropDownMenu > li:nth-child(6)> ul { background: #20aea6; }
.dropDownMenu > li:hover > ul {
display: block;
/* color:#F8A248; */
}
.dropDownMenu li:nth-child(3) > ul a:hover {
color: #e4781e;
}
.dropDownMenu li:nth-child(4) > ul a:hover {
color: #1a7874;
}
.dropDownMenu li:nth-child(5) > ul a:hover {
color: #e4781e;
}
.dropDownMenu li:nth-child(6) > ul a:hover {
color: #1a7874;
}
.dropDownMenu ul li a {}
.dropDownMenu ul li a:hover {
/*color:#2D716E; */
}
/* Level 3 */
.dropDownMenu > li > ul > li > ul {
text-align: left;
display: none;
background: #e4781e;
position: absolute;
left: 100%;
top: 0;
z-index: 9999999;
}
.dropDownMenu > li > ul > li:hover > ul {
display: block;
}
}
.dropDownMenu ul ul li {}
.dropDownMenu ul ul li a {}
.dropDownMenu ul ul li a:hover {}
/* hover color for level 3, column regional & project, color between white and orange */
.dropDownMenu li:nth-child(3) > ul >li >ul a:hover {
color: #F8A248;
}
.dropDownMenu li:nth-child(5) > ul >li >ul a:hover {
color: #F8A248;
}
.regional{
margin-top: 1.5em;
margin-bottom: 1.3em;
}
.program{
margin-top: 1.5em;
margin-bottom: 1.3em;
}
.project{
margin-top: 1.5em;
margin-bottom: 1.3em;
}
.contact{
margin-top: 1.5em;
margin-bottom: 1.3em;
}