-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
65 lines (59 loc) · 1.17 KB
/
about.css
File metadata and controls
65 lines (59 loc) · 1.17 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
.container {
display: grid;
grid-template-columns: 1fr 2fr 1fr;
grid-template-rows: auto;
grid-template-areas:
"header header header"
"main main main"
"main2 main2 main2"
"footer footer footer";
justify-content:space-evenly;
align-content: center;
place-items: center;
row-gap: 50px;
border: 5px tomato dotted;
}
.header {
grid-area: header;
align-self: center;
}
.content {
grid-area: main;
align-self: center;
font-size: 40px;
font-family:'Amatic SC';
font-weight: bold;
padding-top: 150px;
padding-bottom: 100px;
}
.content p {
width: 45%;
color: darkolivegreen;
letter-spacing:2px;
word-spacing: 4px;
padding-left: 15px;
}
#amberphoto {
border: 10px #fcfaef solid;
width:45%;
height:50%;
}
.socials {
grid-area: main2;
display: inline;
flex-wrap: wrap;
align-self: center;
text-align: center;
font-family:'Amatic SC';
font-size: xx-large;
justify-content: space-evenly;
padding-bottom: 75px;
}
.footer {
grid-area: footer;
align-items:center
}
.socials img {
margin-left: 10%;
margin-right: 10%;
}