-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
139 lines (121 loc) · 2.47 KB
/
style.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
body {
background-color:#e6ecf4;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* Style the header */
header {
color: #004295 ;
font-family: "Georgia", Sans-serif;
font-size: 28px;
font-weight: 100;
text-transform: uppercase;
letter-spacing: 7.6px;
background-color: #e6ecf4;
padding: 20px;
text-align: left;
margin-bottom: 50px;
}
#login_link{
float:right;
margin: 10px;
}
/* Style the logo */
.logo{
position: relative;
float: right;
width: 196px;
height: 196px;
}
/* Style the navigation menu */
nav {
background-color:#9bb4d5;
overflow: hidden;
text-align: center;
}
/* Style the links inside the menu */
nav a {
font-family: "Poppins", Sans-serif;
font-size: 20px;
display: inline-block;
font-weight: 500 ;
color: #0a264c ;
text-transform: uppercase;
padding: 30px 30px;
letter-spacing: 1.5px;
text-decoration: none;
flex-grow: 1;
}
/* change anchor's background when hovering or clicking */
nav a.active, nav a:hover{
background-color: #82a2ca;
color: rgb(56, 73, 109);
font-weight: 600;
}
/*Blank Area surrounding parallax*/
.BlankSpace{
height: 15px;
align-content: center;
background-color:rgb(56, 73, 109) ;
}
footer{
font-family: "Poppins", Sans-serif;
font-size: 15px;
text-align: center;
color: #0a264c ;
}
.phone, .phone_no{
display: inline;
}
.dropdown {
overflow: hidden;
}
/* Dropdown content (hidden by default) */
.dropdown-content {
display: none;
width: 100%;
padding: 20px;
background-color: #f9f9f9;
color:#0a264c;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.show {
display: block;
}
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content/Box */
.modal-content {
background-color: #fefefe;
color: #0a264c;
text-align: center;
margin: 15% auto;
padding: 10px;
border: 1px solid #888;
width: 50%;
}
/* The Close Button */
#close {
color: #aaa;
float: right;
padding-right: 10px;
font-size: 28px;
font-weight: bold;
}
#close:hover,
#close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}