-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (43 loc) · 766 Bytes
/
style.css
File metadata and controls
57 lines (43 loc) · 766 Bytes
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
body {
font-family: 'Carter One';
background-image: url("http://www.mulierchile.com/chemistry-backgrounds/chemistry-backgrounds-004.jpg");
display: flex;
min-height: 100vh;
flex-direction: column;
}
main {
flex: 1 0 auto;
}
.hoverable {
margin-top: 10px;
height: 550px;
}
.hoverable:hover {
background-color: #e57373;
border: 2px solid;
opacity: 0.9;
}
h3 {
color: black;
}
a {
color: black;
}
a:hover {
color: black;
}
.thumbnail {
margin-top: 75px;
width: 300px;
height: 300px;
}
.divider {
background-color: black;
}
@media screen and (max-width: 600px) {
.hoverable {
background-color: #e57373;
border: solid 2px black;
opacity: 0.9;
}
}