-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
57 lines (56 loc) · 915 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
.Container{
display:grid;
grid-template-columns: 250px 1fr 250px;
grid-template-rows:150px 1fr 100px;
height:100%;
grid-gap:20px;
grid-template-areas:
"Header Header Header"
"Side Main Right"
"Footer Footer Footer"
}
.Header{
grid-area:Header;
}
.Header h1 {
text-align:center;
font-size:50px;
border-bottom: 1px solid gray;
padding: 50px;
margin:0px;
}
.Side{
grid-area:Side;
border-right: 1px solid gray;
padding:30px;
margin-right:10px;
font-size: 20px;
}
.Main{
grid-area:Main;
}
.Main h2{
padding:20px;
}
.Main p{
padding:20px;
}
.Right{
grid-area:Right;
border-left:1px solid gray;
text-align:center;
padding-top:30px;
font-size: 15px;
}
.Footer{
grid-area:Footer;
border-top:1px solid gray;
}
a {
color:black;
text-decoration: none;
}
*{
margin:0px;
background-color:beige;
}