-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist-gear.css
124 lines (106 loc) · 2.08 KB
/
list-gear.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
/* General Styles */
body {
margin: 0;
font-family: 'Arial', sans-serif;
background-color: #0d1117; /* Gaming vibe */
color: #ffffff;
}
a {
text-decoration: none;
color: #00d8ff;
}
header {
text-align: center;
padding: 2rem;
background-color: #161b22;
border-bottom: 2px solid #00d8ff;
}
header h1 {
font-size: 2.5rem;
color: #00d8ff;
}
header p {
font-size: 1.2rem;
color: #cccccc;
}
/* Form Section */
.list-gear-form-section {
padding: 2rem;
display: flex;
justify-content: center;
align-items: center;
}
.form-container {
background-color: #1f242c;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
max-width: 600px;
width: 100%;
}
h2 {
text-align: center;
color: #ff6f61;
margin-bottom: 1.5rem;
}
form {
display: flex;
flex-direction: column;
}
.form-group {
margin-bottom: 1.5rem;
}
label {
font-size: 1.1rem;
color: #ffffff;
margin-bottom: 0.5rem;
display: block;
}
input,
textarea,
select {
width: 100%;
padding: 0.8rem;
font-size: 1rem;
color: #000000;
border: 2px solid #00d8ff;
border-radius: 5px;
background-color: #ffffff;
}
textarea {
resize: none;
}
input[type="file"] {
border: none;
background-color: transparent;
color: #ffffff;
}
button {
padding: 0.8rem 1.5rem;
font-size: 1.2rem;
font-weight: bold;
color: #161b22;
background-color: #00d8ff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s ease;
}
button:hover {
background-color: #ff6f61;
color: #ffffff;
}
/* Footer */
footer {
text-align: center;
padding: 1rem;
background-color: #161b22;
color: #cccccc;
font-size: 0.9rem;
}
footer a {
color: #00d8ff;
}
footer a:hover {
color: #ff6f61;
}