-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
42 lines (42 loc) · 841 Bytes
/
style.css
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
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;500&display=swap');
*{
margin: 0;
padding: 0;
}
body{
background-color: #e7ffef !important;
font-family: 'Chakra Petch', sans-serif !important;
}
.container .box{
background-color: #fff;
padding: 40px;
margin-top: 100px;
border-radius: 10px;
}
.container .box h3{
margin-bottom: 30px;
font-weight: 500;
}
.container .box button{
background-color: #e7ffef;
border: none;
color: #000;
border: 2px solid #81b687;
box-shadow: none;
font-size: 10px !important;
}
.container .box button:hover{
background-color: #81b687;
color: #fff;
transition: 0.5s;
}
.container h6{
text-align: center;
margin-top: 15px;
}
.container a{
color: #15a325
}
.container .box-2 img{
width: 100%;
}