-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
156 lines (130 loc) · 2.1 KB
/
style.css
File metadata and controls
156 lines (130 loc) · 2.1 KB
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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
*,
::before,
::after {
box-sizing: inherit;
}
body {
font-family: Arial, Helvetica, sans-serif;
background-image: linear-gradient(180deg, #9AB8E0 30%, #FFFFFF 70%);
}
header {
color: #fff;
padding: 0.2rem;
}
.navbar {
background-color: #9ab8e06e;
position: fixed;
width: 100%;
max-height: 10vh;
left: 0;
top: 0;
}
.logo {
margin: 1rem;
margin-bottom: 2rem;
}
.svg {
position: fixed;
background-color: #fff;
padding: 0.8rem;
right: 0.4rem;
top: 0.6rem;
}
.searchbar {
margin: 4rem auto;
width: 90%;
height: 2em;
}
.searchbar input {
width: 100%;
height: 100%;
font-size:1.2rem ;
border-radius: 1.2rem;
}
footer {
text-align: center;
}
.hero {
height: 60vh;
width: 100%;
position: relative;
overflow: none;
margin: 2rem auto;
}
.hero img {
height: 100%;
width: 100%;
opacity: 0.5;
}
.hero p {
color: rgb(255, 255, 255, );
margin: 0.5rem;
position: absolute;
top: 0;
font-size: 2rem;
font-weight: 800;
text-transform: uppercase;
width: 0%;
height: 100%;
}
.item1 {
margin: 3rem auto;
width: 100%;
padding: 1rem;
display: grid;
gap: 1rem;
font-size: 2rem;
}
.drop {
margin: 1rem auto;
padding: 1.5rem;
background-color: #f4f4f4;
border-radius: 1rem;
width: 80%;
}
.drop:hover {
padding: 3rem;
background-color: #afc9ea;
transition: 200ms ease-in-out;
}
main p {
color: rgba(0, 0, 0, 0.888);
text-align: center;
font-weight: 800;
}
.item2 {
width: 90vw;
display: grid;
grid-template-columns: repeat(2, 3fr) 2fr 3fr;
grid-template-rows: 16vh 18vh;
gap: 0.5rem;
padding: 2rem;
}
.testimonial {
background-color: #f4f4f4;
border-radius:1rem;
padding: 3rem;
}
.test1 {
grid-row: 1 / 3;
background: #692442;
}
.test2 {
grid-column: 2/4;
background: #9ADC74;
}
.test3 {
background: #EAD94C;
}
.test4 {
background-color: #77CFE3;
}
.test5 {
grid-column: 3/5;
background: #CB9173;
}