-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
118 lines (98 loc) · 2.2 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@900&family=Poppins:wght@500;700&display=swap');
* {
outline: none;
border: none;
margin: 0;
padding: 0;
text-decoration: none;
}
body {
//font-family: 'Merriweather', serif;
font-family: 'Poppins', sans-serif;
background-color: #32362D;
}
.component-1 {
margin: 90px;
width: 640px;
padding: 50px;
background-color: #fff;
border-radius: 20px;
position: relative;
.back {
position: absolute;
background-color: #FFD767;
width: 700px;
height: 377px;
top: -40px;
left: -40px;
z-index: -1;
border-radius: 20px;
}
.head {
font-size: 26px;
font-family: 'Merriweather';
margin-bottom: 35px;
}
.content {
display: flex;
justify-content: space-between;
text-align: left;
margin-bottom: 35px;
.content-item {
p {
font-weight: bold;
font-size: 14px;
margin-bottom: 10px;
text-transform: uppercase;
}
span {
font-size: 18px;
}
}
}
.button {
padding: 15px 20px;
background-color: #32362D;
border-radius: 5px;
color: #fff;
font-size: 18px;
margin-bottom: 35px;
}
.link {
color: #4F6FDF;
font-size: 16px;
}
}
.component-2 {
width: 544px;
border-radius: 20px;
background-color: #FFD767;
margin: 70px;
padding: 40px 40px;
.text-area {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 18px;
margin-bottom: 14px;
color: #32362D;
span:not(:first-child) {
color: #6A7062;
}
}
.progress {
width: 100%;
height: 12px;
background-color: #fff;
border-radius: 24px;
display: flex;
align-items: center;
.bar {
width: 30%;
height: 70%;
margin: 2px 2px;
border-radius: 24px;
background-color: #32362D;
}
}
}