-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
65 lines (55 loc) · 922 Bytes
/
main.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
65
#logo {
display: block;
margin-top: 1rem;
margin-bottom: 1rem;
margin-left: auto;
margin-right: auto;
width: 600px;
height: 250px;
}
h1 {
font-size: 1.8rem;
font-weight: bold;
text-align: center;
}
.content {
padding: 10px;
border-radius: 50px;
}
h3 {
margin: 1.5rem;
font-weight: bold;
}
h4 {
margin: 1.5rem;
}
p {
margin: 1.5rem;
}
.socialButton {
padding: .5rem;
border: 2px solid black;
border-radius: 15px;
box-shadow: 3px 3px 10px black;
background-color: rgb(35, 39, 42);
width: 300px;
height: 97px;
margin-bottom: 1rem;
}
.socialButton:hover {
background-color: rgb(42, 45, 48);
box-shadow: 5px 5px 10px black;
}
#credit {
margin-top: 1rem;
font-size: 12px;
}
#footer {
margin: 0;
margin-bottom: 1rem;
font-size: 12px;
text-align: center;
}
#footer p {
margin-bottom: 0;
}