-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0807.scss
42 lines (41 loc) · 833 Bytes
/
0807.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
img{
display: block;
}
.card{
width: 300px;
position: relative;
&-tag{
position: absolute;
top: 0;
left: 20px;
writing-mode: vertical-lr;
letter-spacing: 5px;
padding: 10px;
background-color: #3F5D45;
color: #EAF0ED;
}
&-text{
display: flex;
}
&-title{
font-size: 20px;
line-height: 24px;
border: 1px solid #EAF0ED;
padding: 14px 28px;
color: #3F5D45;
font-weight: bold;
}
&-btn{
display: block;
padding: 16px 90px;
border: none;
font-size: 24px;
line-height: 20px;
background-color: #EAF0ED;
color: #3F5D45;
}
&-btn:hover{
background-color: #3F5D45;
color: white;
}
}