-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (55 loc) · 929 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
/* MAIN CONTENT */
body {
background-color: rgb(156, 185, 243);
font-size: 15px;
font-family: Arial, Helvetica, sans-serif;
}
h1 {
text-align: center;
}
section {
background-color: white;
margin: auto;
border-radius: 10px;
padding: 20px;
width: 500px;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.301);
}
div {
text-align: center;
}
div img {
width: 200px;
height: 200px;
padding-top: 10px;
}
footer {
color: black;
font-style: italic;
text-align: center;
}
a {
color: black;
text-decoration: none;
}
/* MEDIA QUERIES */
@media screen and (max-width: 800px) {
section {
width: 450px;
}
}
@media screen and (max-width: 420px) {
section {
width: 300px;
}
}
@media screen and (max-width: 400px) {
section {
width: 300px;
}
}
@media screen and (max-width: 350px) {
section {
width: 250px;
}
}