-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle..css
More file actions
100 lines (86 loc) · 1.74 KB
/
Copy pathstyle..css
File metadata and controls
100 lines (86 loc) · 1.74 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background: linear-gradient(135deg, #0d1117, #161b22, #21262d);
color: #c9d1d9;
line-height: 1.8;
}
.header {
background-color: rgba(22, 27, 34, 0.9);
padding: 20px 30px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}
.header .logo {
font-size: 32px;
font-weight: bold;
color: #58a6ff;
}
.header nav a {
color: #c9d1d9;
text-decoration: none;
margin: 0 20px;
font-size: 20px;
transition: color 0.3s;
}
.header nav a:hover {
color: #58a6ff;
}
.container {
padding: 40px 30px;
}
.form-section {
background-color: rgba(33, 38, 45, 0.9);
padding: 35px;
border-radius: 15px;
max-width: 600px;
margin: 40px auto;
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}
.form-section h2 {
text-align: center;
margin-bottom: 30px;
color: #58a6ff;
font-size: 26px;
}
.form-section form {
display: flex;
flex-direction: column;
gap: 20px;
}
.form-section input,
.form-section select,
.form-section button {
padding: 15px;
font-size: 18px;
border: none;
border-radius: 10px;
}
.form-section input,
.form-section select {
background-color: #30363d;
color: #c9d1d9;
border: 2px solid #484f58;
}
.form-section input:focus,
.form-section select:focus {
border-color: #58a6ff;
outline: none;
box-shadow: 0 0 6px #58a6ff;
}
.form-section button {
background-color: #238636;
color: #ffffff;
cursor: pointer;
font-weight: bold;
transition: background-color 0.3s;
}
.form-section button:hover {
background-color: #2ea043;
}