-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
149 lines (126 loc) · 2.51 KB
/
styles.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
html, body {
height: 100%;
margin: 0;
padding: 0;
background-color: #f2f2f2;
font-family: 'Ubuntu', Arial, sans-serif;
}
/* ...existing styles... */
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh; /* Ensure container fills the viewport height */
background-color: #f2f2f2;
padding: 20px;
box-sizing: border-box;
}
main {
flex: 1; /* Let the main section grow to fill remaining vertical space */
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
width: 100%; /* Adjust the width to fill the container */
max-width: 960px;
margin-bottom: 20px;
}
section {
flex-basis: 100%;
background-color: #fff;
padding: 20px;
text-align: center;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
/* footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
margin-top: auto; /* Push the footer to the bottom
}
*/
footer {
background-color: #f2f2f2; /* Change to the desired light color */
color: #333; /* Change to the desired text color */
padding: 20px;
text-align: center;
margin-top: auto; /* Push the footer to the bottom */
}
.footer-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between; /* Adjust alignment */
align-items: center;
}
.footer-left {
text-align: left; /* Align text to the left */
margin-right: 30px;
}
.footer-right {
text-align: right; /* Align text to the right */
}
/* ...remaining styles... */
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
margin-bottom: 20px;
}
h1 {
font-size: 24px;
margin: 0;
}
h2 {
font-size: 18px;
margin: 0 0 10px;
}
ul {
list-style: none;
padding: 0;
}
.logo {
text-align: center;
margin-bottom: 20px;
}
.logo img {
width: 100px;
height: 100px;
}
.footer-links {
text-align: right;
}
.footer-links{
margin-bottom: 17px;
}
.social-icons {
text-align: right;
margin-right: 25px;
}
.social-icons a {
display: inline-block;
margin-left: 10px;
}
.social-icons img {
width: 30px;
height: 30px;
}
.form-group {
margin-bottom: 20px;
}
label {
display: block;
font-weight: bold;
margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
textarea {
width: 100%;
padding: 10px;
border-radius: 5px;
border: 1px solid #ccc;
}