-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
115 lines (99 loc) · 1.75 KB
/
styles.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
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
@import url('https://fonts.googleapis.com/css?family=Quicksand');
body {
font-family: 'Quicksand', sans-serif;
background-color:#c9d3f5;
}
.title {
margin-left: 88px;
color: white;
font-size: 50px;
font-weight: bold;
}
.row1 {
display: flex;
direction: row;
margin-top: 20px;
margin-bottom: 20px;
}
.row2 {
display: flex;
direction: row;
justify-content: center;
}
#left-arrow {
margin-top: 200px;
font-size: 60px;
color : #faa09b;
}
#letter {
margin-top: 50px;
margin-left: 50px;
margin-right: 50px;
margin-bottom: 25px;
background-color: white;
border-radius: 30px;
width: 650px;
}
#right-arrow {
font-size: 60px;
margin-top: 200px;
color : #faa09b;
}
#intro {
margin: 30px;
color : #faa09b;
font-size: 30px;
}
#conclusion {
margin: 30px;
text-align: right;
color : #faa09b;
font-size: 30px;
}
#letter-body{
margin-left: 60px;
margin-right: 60px;
font-size: 16px;
color: #4f4f4f;
}
#tracker-wrapper {
display: flex;
justify-content: center;
}
#tracker {
display: flex;
justify-content: center;
padding: 5px;
color: white;
font-weight: bolder;
font-size: 20px;
border-radius: 330px;
border-color: white;
border-width: 2px;
border-style: solid;
width: 115px;
margin-bottom: 25px;
}
#heart-img {
margin: 15px;
}
.heart {
z-index : 999;
position : absolute;
}
.heart:before,
.heart:after {
content : "";
background-color : #faa09b;
position : absolute;
height : 30px;
width : 45px;
border-radius : 15px 0px 0px 15px;
}
.heart:before {
transform : rotate(45deg);
}
.heart:after {
left : 10.5px;
transform : rotate(135deg);
}