-
Notifications
You must be signed in to change notification settings - Fork 0
/
challenge.css
46 lines (44 loc) · 995 Bytes
/
challenge.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
a:link,
a:visited {
text-decoration: none;
}
.postcard {
display: flex;
flex-direction: column;
justify-items: center;
align-items: flex-start;
}
.postcard .postcard__img {
width: 100vw;
}
.postcard .postcard__title {
font-family: "Courier New", Courier, monospace;
font-size: 30px;
padding: 40px 40px;
}
.postcard .postcard__description {
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
font-size: 14px;
padding: 40px 40px;
}
.postcard .postcard__buttons {
display: flex;
}
.postcard .postcard__buttons .postcard__button {
display: block;
background-color: white;
color: black;
border: 2px solid black;
padding: 20px;
margin: 40px 20px 40px 40px;
}
.postcard .postcard__buttons .postcard__button--hover:hover {
background-color: black;
color: white;
border: 2px solid black;
}/*# sourceMappingURL=challenge.css.map */