-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutus.css
201 lines (169 loc) · 3.35 KB
/
aboutus.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
196
197
198
199
200
201
body{
background-color: #2D444F;
}
p{
color: #F3DFC1;
padding-left: 50px;
font-family: 'muli';
font-size: 20px;
margin-left: 100px;
margin-right: 100px;
line-height: 2px;
}
h1{
color: #ffffff;
padding-left: 50px;
font-family: 'times new roman';
font-size: 33px;
text-transform: uppercase;
text-align: center;
margin-left: 100px;
margin-right: 100px;
}
h2{
text-indent: 50px;
text-align: justify;
letter-spacing: 1px;
color: #B3C0A4;
font-size: 15px;
padding-left: 50px;
font-family: 'verdana';
margin-left: 100px;
margin-right: 100px;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color: #131621;
opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
color: #131621;
}
::-ms-input-placeholder { /* Microsoft Edge */
color: #131621;
}
* {
box-sizing: border-box;
}
img{
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
border-top-left-radius: 40px;
border-top-right-radius: 40px;
}
#fname{
font-family: courier;
font-weight: bold;
}
#lname{
font-family: courier;
font-weight: bold;
}
#subject{
font-family: courier;
font-weight: bold;
}
/* Style inputs */
input[type=text], select, textarea {
width: 100%;
padding: 12px;
border: 0px solid #ccc;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
background-color: #ADA7B2;
}
input[type=submit] {
background-color: #E59500;
color: white;
padding: 12px 20px;
border: none;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #CC3D33;
}
/* Style the container/contact section */
.container {
border-radius: 5px;
background-color: black;
padding: 10px;
}
/* Create two columns that float next to eachother */
.column {
float: left;
width: 50%;
margin-top: 6px;
padding: 20px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column, input[type=submit] {
width: 100%;
margin-top: 0;
}
}
/*SIDEBAR*/
ul {
list-style-type: none;
}
center{
color: #ffffff;
font-size: 30px;
margin-top: 10px;
/* color for the header for FRIST */
}
.sidenav {
height: 100%;
width: 0px;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #2D444F; /* the coor for the backround menu*/
overflow-x: hidden;
transition: 0.5s;
padding-top: 16px;
}
.sidenav a {
padding: 30px 8px 6px 16px; /*the spacing of the buttons inside nav*/
text-decoration: none;
font-size: 23px;
font-family: 'Arial Black', Gadget, sans-serif;
color: #ffffff; /*sidenav letter color*/
display: block;
transition: 0.3s;
}
.sidenav a:hover {
color: #324A5F;
/* the color for the oving over the words in the menue bar*/
}
.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 30px;
margin-left: 50px;
}
#main {
transition: margin-left .5s;
padding: 0px 10px; /*letters text position left */
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
.topnav input[type=text] {
float: right;
padding: 4px;
border: none;
margin-top: -350px;
margin-right: 16px;
font-size: 17px;
background-color: #d6dadf;
}