-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
145 lines (136 loc) · 2.71 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@500&family=Poppins&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0%;
}
:root {
--background-clr : #F7D1BA;
--primary : #557571;
--secondary : #F4F4F4;
--alt : #D49A89;
}
::selection {
color: var(--primary);
background: var(--alt);
}
body {
background-color: var(--background-clr);
}
.heading {
margin-top: 4rem;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Josefin Sans',sans-serif;
font-size: 5rem;
letter-spacing: 0.5rem;
}
.tagline {
display: flex;
justify-content: center;
align-items: center;
font-family: 'Poppins', sans-serif;
font-size: 2rem;
font-weight: 100;
letter-spacing: 0.2rem;
color: rgb(74, 74, 74);
margin-top: 0.2rem;
}
.parent , .next{
max-width: 100%; max-height: 100%;
text-align: center;
}
.parent img {
display:inline-block;
margin: 1.5rem;
width: 40vw;
height: 40vh;
}
.btn {
margin: 2rem auto;
display: block;
padding: 1rem 5rem;
background-color: var(--secondary);
font-family: 'Poppins', sans-serif;
border-radius: 1rem;
font-weight: 600;
letter-spacing: 0.1rem;
cursor: pointer;
}
/* the second index html file */
.main {
margin: 2rem;
font-family: 'Josefin Sans';
display: flex;
justify-content: space-evenly;
}
.first {
font-size: 5rem;
color: var(--alt);
line-height: 7rem;
}
.second {
line-break: strict;
font-size: 6rem;
color: var(--primary);
}
.image-holder img{
margin: 1rem;
width: 50vw;
height: 60vh;
}
.tag-line {
display: flex;
justify-content: center;
align-items: center;
font-family: 'Poppins', sans-serif;
font-size: 2rem;
font-weight: 100;
letter-spacing: 0.2rem;
color: rgb(74, 74, 74);
margin-top: 0.2rem;
}
.form-btn {
margin: 1rem auto;
display: block;
padding: 1rem 5rem;
background-color: var(--secondary);
font-family: 'Poppins', sans-serif;
border-radius: 1rem;
font-weight: 600;
letter-spacing: 0.1rem;
cursor: pointer;
}
/* form html */
#title {
margin-top: 2rem;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Josefin Sans',sans-serif;
font-size: 3rem;
letter-spacing: 0.5rem;
}
.form {
display: flex;
justify-content: center;
align-items: center;
}
.back {
display: flex;
justify-content: center;
text-align:center;
}
.back button {
margin: 1rem auto;
display: block;
padding: 0.2rem 10rem;
background-color: var(--secondary);
font-family: 'Poppins', sans-serif;
border-radius: 1rem;
font-weight: 300;
letter-spacing: 0.1rem;
cursor: pointer;
border: none;
}