-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreate.css
More file actions
85 lines (73 loc) · 1.32 KB
/
Copy pathCreate.css
File metadata and controls
85 lines (73 loc) · 1.32 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
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
padding: 40px;
margin: 0;
padding: 0;
}
nav {
background-color: #1a1a1a;
padding: 1em 0;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
margin-bottom: 20px;
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
gap: 2em;
margin: 0;
padding: 0;
}
nav ul li a {
text-decoration: none;
color: white;
font-weight: bold;
font-size: 1.1em;
transition: color 0.3s ease, border-bottom 0.3s ease;
padding-bottom: 3px;
}
nav ul li a:hover {
color: #ffd700; /* or another highlight color like #00bfff */
border-bottom: 2px solid #ffd700;
}
.container {
background: white;
padding: 20px 30px;
border-radius: 8px;
max-width: 400px;
margin: auto;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
text-align: center;
}
form {
display: flex;
flex-direction: column;
gap: 15px;
}
input[type="text"],
select {
padding: 8px;
font-size: 16px;
}
select {
margin-bottom: 8px;
}
button {
padding: 10px;
font-size: 16px;
background-color: #2c7be5;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #1a5bb8;
}
#success {
color: green;
font-weight: 900;
}