-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
76 lines (71 loc) · 1.38 KB
/
main.css
File metadata and controls
76 lines (71 loc) · 1.38 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
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700&display=swap');
html {
font-family: 'Nunito', sans-serif;
background-color: wheat;
}
.onBackground {
background-image: url('clouds.jpg');
background-size: cover;
background-repeat: no-repeat;
height: 100%;
font-size: 4em ;
text-align: center;
padding: 470px 0 100px 0;
color: wheat;
}
.gridContainer {
border: 2px solid black;
border-radius: 7px;
margin: 5px 0px;
padding: 5px 7px;
display: grid;
grid-template-areas:
"myleft myright"
"myfooter myfooter";
grid-template-columns: 2fr 1fr;
gap: 5px;
}
h2 {
color: indianred;
}
.myleft {
grid-area: myleft;
}
.myright {
grid-area: myright;
border-left: 1px solid black;
padding: 5px;
}
.myright h3 {
text-align: center;
}
.contactTable {
margin: 0px auto;
}
.contactLinks a {
display: inline-block;
height: 30px;
width: 300px;
border: 1px solid black;
border-radius: 6px;
text-align: center;
text-decoration: none;
left: 10px;
position: relative;
background-color: tomato;
color: white;
}
.contactLinks a:hover {
background-color: white;
color: black;
}
.myfooter {
grid-area: myfooter;
color: black;
font-size: small;
/* background-color: black; */
}
h1, h2, h3, h4, h5, h6 {
text-align: center;
}
}