-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
135 lines (120 loc) · 3.67 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
/* styles.css */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-image: url('https://assetsio.reedpopcdn.com/Sons-of-the-Forest-snow-base.jpg?width=1920&height=1920&fit=bounds&quality=80&format=jpg&auto=webp');
background-size: cover;
background-position: right; /* Adjust the position to control the fading effect */
background-repeat: no-repeat;
color: #EDEDED; /* Light gray text color */
}
h1 {
text-align: center;
margin: 20px 0;
color: #EDEDED; /* Light gray text color */
}
/* Style the form */
#config-form {
max-width: 500px;
margin: 0 auto;
padding: 50px;
background-color: #1E1934; /* Dark matte purple background */
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
border-radius: 10px; /* Rounded corners */
margin-bottom: 40px; /* Increase the margin-bottom for more space */
}
label {
display: block;
margin-bottom: 10px;
font-weight: bold;
color: #B7B7B7; /* Lighter gray text color */
}
input[type="text"],
input[type="number"],
select,
.checkbox-container input[type="checkbox"] {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #2C285E; /* Dark purple border */
border-radius: 5px;
background-color: #2C285E; /* Dark purple background */
color: #EDEDED; /* Light gray text color */
}
/* Style the checkbox label text */
.checkbox-container label {
color: #EDEDED; /* Light gray text color */
}
button {
background-color: #3C389F; /* Dark matte purple button background */
color: #EDEDED; /* Light gray text color */
border: none;
padding: 10px 20px;
cursor: pointer;
border-radius: 5px;
}
button:hover {
background-color: #2C285E; /* Darker purple on hover */
}
/* Style the file input and its label */
.file-input-label {
display: block;
margin-bottom: 10px;
font-weight: bold;
color: #B7B7B7; /* Lighter gray text color */
}
input[type="file"] {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: none;
border-radius: 5px;
background-color: #2C285E; /* Dark purple background */
color: #EDEDED; /* Light gray text color */
cursor: pointer; /* Show pointer cursor when hovering */
}
/* Style the file input container */
.file-input-container {
display: inline-block;
background-color: #3C389F; /* Dark matte purple button background */
color: #EDEDED; /* Light gray text color */
border: none;
padding: 10px 20px;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.2s ease-in-out;
}
.file-input-container:hover {
background-color: #2C285E; /* Darker purple on hover */
}
/* Style the dropdown (select) */
select {
width: 20%;
padding: 10px; /* Adjust padding to your preference */
margin-bottom: 15px;
border: 1px solid #2C285E; /* Dark purple border */
border-radius: 5px;
background-color: #2C285E; /* Dark purple background */
color: #EDEDED; /* Light gray text color */
cursor: pointer; /* Show pointer cursor when hovering */
appearance: none; /* Remove default styles on some browsers */
}
/* Style the dropdown arrow icon */
select::after {
content: "\25BC"; /* Unicode down arrow symbol */
position: absolute;
top: 50%;
right: 10px;
transform: translateY(-50%);
font-size: 20px; /* Increase font-size for a larger arrow */
color: #EDEDED; /* Light gray text color */
}
/* Style the footer */
footer {
background-color: #1E1934; /* Dark matte purple background */
color: #B7B7B7; /* Lighter gray text color */
text-align: center;
padding: 20px; /* Adjust the padding to create more space */
font-size: 14px; /* Adjust the font size as needed */
}