-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (52 loc) · 739 Bytes
/
style.css
File metadata and controls
63 lines (52 loc) · 739 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
57
58
59
60
61
62
63
html, body {
min-height: 100%;
}
body {
font-family: Verdana;
color: white;
margin: 30px 0;
box-sizing: border-box;
background: #1A1A1A;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
hr {
margin: 40px 0;
}
.item {
margin: 30px;
box-shadow: 0 0 15px 0 black;
transition: box-shadow 0.1s;
padding: 30px;
width: 70%;
}
@media screen and (min-width: 768px) {
.item {
width: 55%;
}
}
@media screen and (min-width: 900px) {
.item {
width: 40%;
}
}
.item img {
width: 100%;
}
a {
color: white;
text-decoration: none;
}
a:visited {
color: #AAA;
}
.item:hover {
box-shadow: 0 0 30px 0 black;
}
.caption {
margin-top: 10px;
font-style: italic;
text-align: center;
}