-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (52 loc) · 1.13 KB
/
style.css
File metadata and controls
59 lines (52 loc) · 1.13 KB
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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*{
margin: 0;
padding:0;
}
body{
font-family:Arial, Helvetica, sans-serif;
background-image: linear-gradient( to bottom right, rgb(214, 202, 255),rgb(255, 134, 221));
}
.promo-title{
font-size: 40px;
font-weight: 600;
margin-top: 70px;
}
.btn-primary{
box-shadow: none !important;
padding:8px 25px;
border-radius: 2px !important;
border: 2px solid #3c366b !;
color: #3c366b !important;
background: none !important;
}
.btn-primary:hover{
background: #3c366b !important;
color:#fff !important;
border: 2px solid #fff !important;
}
#life{
padding: 40px 0;
color: #3c366b;
}
.title::before{
content: '';
background:#3c366b;
height: 8px;
width: 200px;
margin-left: auto;
margin-right: auto;
display: block;
border-radius: 50px;
transform: translateY(46px);
}
ul{
list-style-type: none;
font-weight: 500;
/* font-weight: lighter; */
}
ul li{
padding: 3px;
font-weight: 500;
color: black;
}