-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (51 loc) · 1005 Bytes
/
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
* {
margin: auto;
/* border: solid 1px grey; */
}
body {
font-size: 14px;
box-sizing: border-box;
background-color: #fff;
}
#container{
height:100%;
margin:auto;
/* height: 100vh;*/
max-width: 1000px;
}
header{
height: 25vh;
text-align: center;
background:no-repeat #ffffff url("https://picsum.photos/id/1015/1000/280");
/* line-height:12.5vh; */
}
nav>div{
display: inline-block;
padding-top: 47px;
}
h1{
padding-top: 60px;
}
main{
height: 50vh;
/* float:left; */
display: inline-block;
width: 69%;
/* left:10vw; */
background-color: rgba(255,0,0,0.5);
}
p {
line-height: 1.5rem;
}
aside{
float: right;
height: 50vh;
width: 30%;
background-color: palegreen;
}
footer{
width:100%;
/* clear:both; */
height: 25vh;
background-color: blueviolet;
}