-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
59 lines (50 loc) · 820 Bytes
/
styles.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
body {
background-color: black;
color: white;
}
header {
text-align: center;
color: #a20b1a;
margin-top: 50px;
margin-bottom: 50px;
}
.image {
background-color: white;
padding: 10px 10px 100px 10px;
background-color: white;
border: 20px solid hsl(354, 87%, 34%, 85%);
display: block;
margin-left: auto;
margin-right: auto;
}
.image:hover {
cursor: url("img/redo_photo.png"), auto;
}
p {
grid-row-start: 2;
text-align: center;
}
a:visited {
color: white;
}
a:hover {
cursor: default;
}
footer {
margin-top: 70px;
text-align: right;
font-size: 12px;
font-style: italic;
}
@media (max-width: 650px) and (min-width: 500px) {
.image {
width: 60%;
padding-bottom: 60px;
}
}
@media (max-width: 500px) {
.image {
width: 70%;
padding-bottom: 40px;
}
}