-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
157 lines (131 loc) · 3.1 KB
/
style.css
File metadata and controls
157 lines (131 loc) · 3.1 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
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
*{
margin: 0;
padding: 0;
}
header{
width: 100%;
height: 400px;
margin: 0px;
background-image:url(https://images.unsplash.com/photo-1529551739587-e242c564f727?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=890&q=80) ;
background-size: cover;
}
h1{
color:teal;
font-size: 55px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-style: italic;
text-align: center;
padding-top: 75px;
box-shadow: 4px 4px 8px teal;
}
nav{
background-color:teal;
height: 60px;
width: 100%;
margin: 0;
padding-left: 30;
text-align: center;
position: sticky;
top: 0;
order: 1;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
li{
background-color: white;
margin: 10px;
list-style:none ;
width: 20%;
text-align: center;
border-radius: 5px;
box-align: baseline;
display: inline-block;
padding-left: 15px;
}
nav li a:hover{
color: black;
}
nav li a{
color: teal;
}
section{
width: 100%;
}
footer{
width: 100%;
height: 30px;
background-color: teal;
color: white;
text-align: center;
}
#foot{
font-size: 15;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
color:white;
font-style: italic;
text-align: center;
padding-top: 25px;
}
.wrapper{
display: grid;
grid-template-columns: 3fr 1fr;
}
.wrapper section{
padding-left: 30px;
order: 0;
}
.wrapper section h2{
text-align: center;
text-decoration: underline;
color: teal;
font-size: 20px;
font-weight: bold;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
box-shadow: 3px 3px 6px teal;
}
.wrapper section p{
margin: 10px;
font-weight: normal;
text-align: justify;
padding: 10px;
float:inline-end;
z-index: 1;
font-family:'Arial Narow Bold', sans-serif;
}
.wrapper section p img{
float:inline-start;
margin: 10px;
}
h5{
color: teal;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
font-size: 15px;
}
aside{
background-color: teal;
margin-left: 25px;
box-shadow: 3px 3px 6px black;
order: 1;
flex-basis: 100%;
}
.wrapper aside h3{
padding-left: 30px;
text-align: center;
}
.contact {
font-size: 15px;
padding-left: 15px;
}
input {
display: block;
align-content: center;
}
@media screen and (max-width:990px)
{
header{
height: 200px;}
#title{
font-size: 35px;}
.wrapper{
display: flex;
flex-wrap: wrap;
}