-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart.css
44 lines (40 loc) · 840 Bytes
/
start.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
#form {
background-color: #222222;
border: 2px solid #444444;
border-radius: 8px;
padding: 20px;
max-width: 50%;
width: 100%;
text-align: center;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
font-size: 2em;
margin-bottom: 20px;
color: #cccccc;
}
input {
padding: 10px;
font-size: 1em;
width: calc(100% - 20px);
max-width: 100%;
border: 1px solid #444444;
background-color: #333333;
color: #ffffff;
border-radius: 5px;
margin-bottom: 10px;
outline: none;
}
input[type="submit"] {
background-color: #666666;
color: #ffffff;
cursor: pointer;
border: none;
transition: background-color 0.3s ease;
}
input[type="submit"]:hover {
background-color: #555555;
}