-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
162 lines (134 loc) · 2.57 KB
/
style.css
File metadata and controls
162 lines (134 loc) · 2.57 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
* {
box-sizing: border-box;
}
html, body {
height: 100%;
margin: 0;
font-family: Arial, sans-serif;
}
.container {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.header {
background-color: #4635B1;
color: white;
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.navbar {
display: flex;
}
.nav-links {
list-style: none;
display: flex;
margin: 0;
padding: 0;
}
.nav-links li {
margin-left: 20px;
}
.nav-links a {
color: white;
text-decoration: none;
padding: 8px 16px;
transition: background-color 0.3s;
}
.nav-links a:hover {
background-color: #575757;
border-radius: 4px;
}
.main {
flex: 1;
padding: 20px;
text-align: center;
}
label {
display: block;
margin-bottom: 5px;
}
input {
padding: 10px;
width: 300px;
border: 1px solid #ccc;
border-radius: 4px;
}
.bottom-plus {
position: fixed; /* Fixed to the bottom right */
bottom: 20px;
right: 20px;
}
.bottom-plus button {
background-color: #ffdd59; /* Yellow background */
color: white;
border: none;
padding: 15px 20px;
font-size: 20px;
border-radius: 50%; /* Make it round */
cursor: pointer;
}
button:hover {
background-color: #575757;
}
.signup-prompt {
margin-top: 20px;
}
.signup-prompt a {
color: #333;
text-decoration: underline;
}
.footer {
background-color: #4635B1;
color: white;
padding: 20px 0;
text-align: center;
}
.quote{
font-size: 20px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.image-area {
width: 80%; /* Adjust image width */
margin-bottom: 20px;
}
.image-area img {
width: 50%;
height: auto;
display: block; /* Prevents image from creating extra space */
}
a{
text-decoration: none;
}
a:hover{
color: #333;
}
.contai {
display: flex;
justify-content: center; /* Center the block horizontally */
padding: 20px;
}
.cont {
display: flex; /* Use flexbox for the inner block */
gap: 20px; /* Space between the boxes */
}
.box {
background-color: #dbd8f2;
color: rgb(35, 28, 254);
padding: 20px;
border-radius: 4px;
flex: 1; /* Make boxes take equal space */
text-align: center;
}
.containe {
display: flex; /* Use flexbox */
flex-wrap: wrap; /* Allow boxes to wrap to the next line */
gap: 20px; /* Space between boxes */
padding: 20px;
}
.extra {
flex: 1 1 200px; /* Grow and shrink, with a base width of 200px */
height: 150px;
}