-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchallenge.scss
57 lines (47 loc) · 1.22 KB
/
challenge.scss
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
$color-black: black;
$color-white: white;
a:link,
a:visited {
text-decoration: none;
}
.postcard {
display: flex;
flex-direction: column;
justify-items: center;
align-items: flex-start;
// padding: 40px 40px;
.postcard__img {
width: 100vw;
}
.postcard__title {
font-family: 'Courier New', Courier, monospace;
font-size: 30px;
padding: 40px 40px;
}
.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__buttons {
display: flex;
.postcard__button {
display: block;
background-color: $color-white;
color: $color-black;
border: 2px solid $color-black;
padding: 20px;
margin: 40px 20px 40px 40px;
}
.postcard__button--hover:hover{
background-color: $color-black;
color: $color-white;
border: 2px solid $color-black;
}
}
}