forked from PriyaGhosal/SkillWise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
192 lines (165 loc) · 4.54 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
#contact {
padding: 50px 0;
background-color: #008080;
position: relative;
}
#contact .container {
max-width: 800px;
margin: 0 auto;
padding: 0 15px;
}
/* Section Title */
#contact h2 {
text-align: center;
color: #d6eaff;
font-weight: bold;
text-transform: uppercase;
}
/* Contact Form */
#contact-form {
display: flex;
flex-direction: column;
gap: 20px;
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
padding: 30px;
width:160%;
}
/* Input Fields */
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
width: 100%;
padding: 15px;
font-size: 1rem;
border: 1px solid #ddd;
border-radius: 5px;
transition: border-color 0.3s, box-shadow 0.3s;
}
/* Input Focus Effects */
#contact-form input:focus,
#contact-form textarea:focus {
border-color: #3498db;
box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
outline: none;
}
/* Textarea */
#contact-form textarea {
height: 150px;
resize: none;
}
/* Submit Button */
#contact-form button {
background-color: #3498db;
color: #fff;
width:250px;
padding: 15px;
font-size: 1rem;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s, transform 0.2s;
}
/* Button Hover Effects */
#contact-form button:hover {
background-color: #2980b9;
transform: translateY(-2px);
}
/* Button Focus Effect */
#contact-form button:focus {
outline: none;
box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}
/* Container for the events */
.event-list {
display: flex;
flex-direction: column;
gap: 15px; /* Adds more space between the event items */
margin-bottom: 20px;
margin-top: 20px; /* Adding top margin */
}
/* Individual event item */
.event-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px; /* Increased padding for more space */
border: 2px solid var(--roman-silver); /* Border matching roman silver */
border-radius: 12px; /* Slightly more rounded corners */
background-color: var(--roman-silver_10); /* Light transparent background */
color: var(--roman-silver); /* Text color using roman silver */
transition: background-color 0.3s ease;
font-size: 1.4rem; /* Bigger font size for better readability */
}
/* Event date box styling */
.event-date-box {
background-color: var(--light-coral); /* Light coral background for date box */
padding: 15px; /* Increased padding for a larger box */
border-radius: 10px;
display: flex;
flex-direction: column;
align-items: center;
min-width: 90px; /* Slightly larger date box */
}
.event-month {
font-size: 1.8rem; /* Bigger size for the month */
font-weight: bold;
color: var(--oxford-blue); /* Oxford blue text color */
}
.event-day {
font-size: 3.2rem; /* Bigger size for the day */
font-weight: bold;
color: var(--oxford-blue); /* Oxford blue text */
}
/* Event details styling */
.event-details {
flex-grow: 1;
margin-left: 30px; /* More space between date and details */
}
.event-title {
font-size: 2rem; /* Larger font size for titles */
font-weight: 700; /* Bolder font for event titles */
color: var(--light-coral); /* Light coral for event titles */
}
.event-description {
font-size: 1.4rem; /* Larger description font size */
color: rgba(240, 74, 74, 0.862) /* Roman silver for descriptions */
}
/* Event button */
.event-button {
background-color: transparent;
border: 2px solid var(--keppei); /* Keppei color for button borders */
padding: 16px 28px; /* Bigger padding for a larger button */
border-radius: 10px;
font-size: 1.4rem; /* Larger font size for buttons */
color: var(--keppei); /* Keppei color for the text */
text-decoration: none;
font-weight: bold; /* Bolder button text */
transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.event-button:hover {
background-color: var(--keppei); /* Keppei background on hover */
color: var(--oxford-blue); /* Oxford blue text on hover */
transform: scale(1.1); /* Slightly bigger button on hover */
}
/* Hover effect for event items */
.event-item:hover {
transform: scale(1.03); /* Slightly enlarges the event item on hover */
}
#search-results{
position:absolute;
left: -100px;
width: 350px;
color: black;
margin-top: 50px;
}
#freeTrial{
position: absolute;
right: 80px;
}
#theme-toggle{
position: absolute;
right: 5px;
top: 20px;
}