forked from Ayushparikh-code/Web-dev-mini-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
78 lines (64 loc) · 1.12 KB
/
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
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
*{
margin: 0;
padding: 0;
font-family: 'Lato', sans-serif;
}
body{
background-color: #eee;
}
.logo{
font-family: 'Dancing Script', cursive;
font-size: 39px;
color: red;
padding: 20px 70px;
}
.wrapper{
width: 70%;
margin: 0 auto;
text-align: center;
margin-top: 80px;
}
.heading{
font-size: 28px;
letter-spacing: 0.9px;
line-height: 54px;
}
.about{
font-size: 19px;
line-height: 30px;
text-align: left;
}
.box{
padding: 100px 0;
background-image: url('./heart.png');
background-repeat: no-repeat;
background-size: contain;
background-position: 50% 60%;
opacity: 0.8;
}
.flex-box{
display: flex;
justify-content: space-around;
}
.bold{
font-weight: bold;
font-size: 17px;
letter-spacing: 0.7px;
}
input{
padding: 20px 70px;
border: none;
border-radius: 35px;
}
button{
padding: 15px 28px;
font-size: 20px;
border-radius: 30px;
background-image: linear-gradient(210deg, red, orange);
border: none;
color: #fff;
cursor: pointer;
}
#lovePercentage{
font-size: 30px;
}