-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
154 lines (133 loc) · 4 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
/* Your CSS will have the following updates: */
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', 'Roboto', sans-serif;
line-height: 1.6;
color: #333;
background-color: #fafafa;
padding: 20px;
margin-bottom: 20px; /* Ensures spacing at the bottom of the page */
}
/* Header Styles */
header {
background: linear-gradient(to right, #29b6f6, #b3e5fc); /* Lighter gradient */
color: white;
padding: 60px 40px; /* Increased padding */
text-align: center;
border-radius: 20px;
margin-bottom: 40px; /* Increased space below the header */
}
#logo {
width: 150px;
height: auto;
margin-bottom: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
border-radius: 10px;
background-color: white;
padding: 5px;
}
.logo-box {
text-align: center;
margin-bottom: 20px;
}
header h1 {
font-size: 4em; /* Significantly larger font size */
font-weight: 600;
margin-bottom: 20px; /* Added margin for spacing */
}
/* Section Styling */
section {
background: white;
margin: 20px;
padding: 60px; /* Increased padding */
border-radius: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Individual Key Feature Box */
ul {
padding: 0;
}
li {
background: #e3f2fd; /* Soft blue for feature background */
margin-bottom: 30px; /* Increased spacing */
padding: 20px; /* Padding inside each feature box */
border-radius: 10px; /* Rounded corners for boxes */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
list-style-type: none; /* Removes bullet points */
}
/* First two features with different color */
li:nth-child(1), li:nth-child(2) {
background: #b2dfdb; /* Different color for the first two boxes */
}
h2, h3 {
color: #2a2a2a;
font-size: 2.2em;
margin-bottom: 30px; /* Increased spacing */
font-weight: 500;
}
/* Features Coming Soon Section Styling */
#features-coming-soon h2 {
font-size: 2.5em; /* Larger font size for the section title */
color: #333; /* Adjust the color as needed */
text-align: center;
margin-top: 50px; /* Space above the title */
margin-bottom: 30px; /* Space below the title */
}
#features-coming-soon ul {
list-style-type: none; /* Removes default list bullets */
padding: 0;
}
#features-coming-soon li {
background: #f0f0f0; /* Light background for each feature placeholder */
margin-bottom: 20px; /* Space between placeholders */
padding: 15px; /* Padding inside placeholders */
border-radius: 8px; /* Rounded corners for placeholders */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
font-style: italic; /* Italicize the placeholder text */
text-align: center;
}
/* Footer Styles */
footer {
background: #555; /* Lighter shade than #333 */
color: white;
text-align: center;
padding: 30px 0;
border-radius: 20px;
margin-top: 40px;
}
/* Button Styles */
.try-it-out-button {
display: inline-block;
background-color: #29b6f6;
color: white;
padding: 15px 30px; /* Increased padding for a larger button */
border-radius: 5px;
text-decoration: none;
font-weight: bold;
transition: background-color 0.3s ease;
font-size: 1.1em; /* Larger font size */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Button shadow for depth */
}
.try-it-out-button:hover {
background-color: #0288d1;
}
/* Responsive Design */
@media screen and (max-width: 700px) {
header, section, footer {
border-radius: 0; /* Removes border-radius on small screens for a full-width look */
}
header h1 {
font-size: 2em;
}
.container, .try-it-out, header, section, footer {
padding: 20px; /* Consistent padding */
}
li {
margin-bottom: 20px; /* Adjusts spacing between feature boxes */
}
}