-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathstyle.css
69 lines (59 loc) · 1.05 KB
/
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
60
61
62
63
64
65
66
67
68
69
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
button {
background: none;
border: 0;
cursor: pointer;
}
body {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
background-color: rgb(17, 21, 28);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
}
main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
max-width: 540px;
}
header {
margin-bottom: 1.5rem;
}
main h1 {
color: #f5f5dc;
}
.imgs__container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
max-width: 300px;
margin-bottom: 1.5rem;
}
/* .wrapper:before {
display: inline-block;
height: 100%;
vertical-align: middle;
} */
.wrapper {
text-align: center;
height: 100%;
}
.wrapper img {
vertical-align: middle;
width: 80%;
height: 80%;
}
.actions__container button {
border: 2px solid #f5f5dc;
color: #f5f5dc;
padding: 0.5rem 1rem
}