forked from CodeYourFuture/HTML-CSS-Coursework-Week3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle3.css
More file actions
46 lines (37 loc) · 632 Bytes
/
style3.css
File metadata and controls
46 lines (37 loc) · 632 Bytes
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
.row > div{
margin-bottom: 15px;
}
.header{
min-height: 90px;
}
.footer{
min-height: 60px;
color: rgb(253, 252, 252);
}
.header, .footer{
/* background: lightblue; */
border: 2px solid lightblue;
}
}
.sidebar{
background: #dbdfe5;
border: 2px solid lightblue;
}
.intro{
background:lightblue;
min-height: 250px;
border: 2px solid lightblue;
}
.section{
min-height: 150px;
background: #dbdfe5;
border: 2px solid lightblue;
}
.section.bg-alt{
background: #b4bac0;
border: 2px solid lightblue;
}
@media (min-width: 540px) {
}
@media (min-width: 900px) {
}