-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
176 lines (155 loc) · 3.43 KB
/
Copy pathstyles.css
File metadata and controls
176 lines (155 loc) · 3.43 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box; /*to allign the header with the image*/
font-family: 'Palatino', 'Times New Roman', serif;
cursor: url('sword-curs.png') 16 16, auto; /*these numbers are for the pointer*/
}
/* Body Styling */
body {
font-family: Arial, sans-serif;
background-color: #fbf2f0;
color: #0C1F2D;
display: flex; /*flixable layout*/
flex-direction: column; /*stack them vertically*/
align-items: center;
}
.header {
width: 100%;
max-width: 1200px;
background-color: #0C1F2D;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
position: sticky;
top: 0; /*to stay at top*/}
.title-header {
font-size: 25px;
font-weight: bold;
}
.contact-button {
padding: 10px 20px;
background-color: #8b4513;
color: white;
border: none;
border-radius: 5px;
font-size: 14px;
}
.main-content {
width: 100%;
max-width: 1200px;
text-align: center;
margin-top: 20px;
}
img {
width: 100%;
height: auto;
max-height: 500px;
object-fit: cover;
border-radius: 10px;
}
.title-center {
font-size: 40px;
color: #0C1F2D;
padding: 50px;
font-weight: bold;
}
/* Tool Intro Section */
section {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
padding: 40px;
background-color: #fff;
border-radius: 15px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
/*0 0 15px are vertical-horizantal things, this is centered behind the element*/
/*15 is the blur*/
/*rgba is the colros, this is black*/
/*0.1 is the transperansy*/
margin: 20px auto;
max-width: 1200px;
width: 100%; /*width to the bigger element*/
gap: 20px; /*this if for adding gap between child elements, in this case its the writing and the image*/
}
.tool-description {
flex: 1; /*to make the image next to the writing*/
padding-right: 20px;
min-width: 300px;
}
.tool-description h2 {
font-size: 28px;
color: #0C1F2D;
margin-bottom: 10px;
}
.tool-description p {
font-size: 16px;
color: #333;
line-height: 1.6;
text-align: center;
}
.get-started-button {
margin-top: 20px;
padding: 10px 20px;
font-size: 16px;
background-color: #8b4513;
color: white;
border: none;
border-radius: 5px;
}
.tool-image {
flex: 1;
text-align: center;
min-width: 300px;
}
.tool-image img {
max-width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.reviews {
background-color: #fff9e6;
padding: 40px;
margin-top: 40px;
border: 2px solid #8b4513;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
text-align: center;
}
.reviews-container {
display: flex;
justify-content: space-between; /*space between the cards.*/
gap: 20px;
margin-top: 20px;
}
.review-card {
background-color: #fff9e6;
padding: 20px;
border: 2px solid #8b4513;
border-radius: 8px;
width: 30%;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.review-card p {
font-size: 1.1em;
color: #2c1810;
line-height: 1.6;
}
.review-card b { /*names*/
display: block;
margin-top: 10px;
color: #8b4513;
}
.footer {
width: 100%;
padding: 20px;
background-color: #8b4513;
color: #fff9e6;
margin-top: 40px;
font-size: 18px;
}