-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
42 lines (36 loc) · 749 Bytes
/
styles.css
File metadata and controls
42 lines (36 loc) · 749 Bytes
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
body {
font-family: 'Arial', sans-serif;
background-color: #e9c46a;
}
/* Customize the container */
.custom-container {
background-color: #e9c46a;
border-radius: 5px;
padding: 15px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
/* Subtle shadow */
}
.custom-input,
.custom-select {
border-color: #264653;
font-size: 16px;
}
.custom-input:focus,
.custom-select:focus {
border-color: #264653;
box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
/* Customize the button */
.custom-button {
background-color: #2a9d8f;
border-color: #2a9d8f;
}
.custom-button:hover {
background-color: #2a9d8f;
border-color: #2a9d8f;
}
.custom-result {
color: #333;
font-weight: bold;
font-size: 16px;
}