forked from savingstar/coupon-display-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
68 lines (59 loc) · 1.17 KB
/
style.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
57
58
59
60
61
62
63
64
65
66
67
68
$dove-gray: #6c6c6c;
$gallery: #f0f0f0;
$shady-lady: #9c9c9c;
$star-dust: #a1a1a1;
$very-light-gray: #cdcdcd;
$white: #ffffff;
.btn-primary {
background-color: $shady-lady;
border-color: $shady-lady;
&:hover {
background-color: $shady-lady;
border-color: $shady-lady;
}
}
.coupon-cell {
display: flex;
flex-direction: column;
margin-top: 15px;
margin-bottom: 15px;
border-color: $star-dust;
border-style: solid;
border-width: 2px;
border-radius: 10px;
}
.coupon-header {
background-color: $dove-gray;
border-top-right-radius: 8px;
border-top-left-radius: 8px;
}
.coupon-title {
padding-top: 15px;
padding-bottom: 15px;
margin-bottom: 0;
color: $white;
}
.coupon-body {
display: flex;
align-items: center;
padding-top: 20px;
padding-bottom: 20px;
}
.coupon-description {
margin-bottom: 0;
font-size: 0.9rem;
}
.coupon-footer {
padding-top: 10px;
padding-bottom: 10px;
background-color: $gallery;
border-top-color: $very-light-gray;
border-top-style: solid;
border-top-width: 2px;
border-bottom-right-radius: 8px;
border-bottom-left-radius: 8px;
}
.coupon-btn {
font-size: 0.9rem;
text-transform: uppercase;
}