-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
196 lines (171 loc) · 3.81 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
*{
margin: 0;
padding: 0;
font-family: sans-serif;
text-decoration: none;
}
body{
box-sizing: border-box;
overflow-x: hidden;
}
.section-first{
background-image: url("Design tools for a website creation platform1.webp");
height: 100vh;
width: 100%;
background-size: cover;
display: flex;
align-items: center;
justify-content: center;
}
.section-Second{
background-image: url("Page\ Over2.webp");
height: 80vh;
width: 100%;
background-size: cover;
display: flex;
justify-content: center;
align-items: flex-start;
flex-direction: column;
text-align: left;
gap: 20px;
padding-left: 200px;
}
.section-Second .section-third .section-forth>h1{
font-size: 100px;
gap: 2px;
}
button{
height: 5vh;
width: 8%;
border-radius: 20px;
background-color: rgb(19, 117, 237);
border: none;
color: white;
}
button:hover{
background-color: rgb(116, 175, 248);;
cursor: pointer;
transition: 0.5s;
}
.section-third{
background-image: url("Page\ Over3.webp");
height: 80vh;
width: 100%;
background-size: cover;
display: flex;
justify-content: center;
align-items: flex-end;
flex-direction: column;
text-align: right;
gap: 20px;
padding-right: 200px;
box-sizing: border-box;
}
.section-forth{
background-image: url("Page\ Over4.webp");
height: 80vh;
width: 100%;
background-size: cover;
display: flex;
justify-content: center;
align-items: flex-start;
flex-direction: column;
text-align: left;
padding-left: 200px;
gap: 20px;
}
.section-fifth{
background-image: url("Page\ Over5.webp");
height: 80vh;
width: 100%;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
gap: 30px;
}
.section-fifth>h1{
font-size: 50px;
gap: 5px;
}
footer{
height: 20vh;
width: 100%;
background-color: beige;
display: flex;
align-items: center;
justify-content: space-evenly;
word-spacing: 4px;
}
.line{
border: 2px solid rgb(176, 176, 176);
}
.yes{
display: flex;
gap: 10px;
}
footer>a{
color: black;
}
.section-div{
background-color: transparent;
display: flex;
align-items: center;
justify-content: center;
height: 65vh;
width: 40%;
border: 2px solid white;
box-sizing: border-box;
}
.section-div-content{
background-color: whitesmoke;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
height: 60vh;
width: 95%;
border: 2px solid white;
gap: 60px;
box-sizing: border-box;
flex-direction: column;
}
.heading>h1{
font-size: 40px;
}
.input-button{
display: flex;
align-items: center;
gap: 40px;
width: 90%;
}
.input-button>button{
white-space: nowrap; /* Prevents text from wrapping to the next line */
display: flex;
align-items: center;
justify-content: center;
padding: 20px 90px;
border-radius: 20px;
background-color: rgb(60, 91, 216);
border: none;
box-sizing: border-box;
color: white; /* Ensure text color is set */
}
.input-button>input{
background-color: transparent;
border: none;
border-bottom: 2px solid rgb(54, 165, 210);
flex: 2;
padding: 10px;
box-shadow: none;
outline: none;
color: white; /* Ensure input text color is visible */
}
.input-button>button>i{
margin-left: 6px;
}
.pera p {
color: black; /* Ensure paragraph text is visible */
}