-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
50 lines (43 loc) · 865 Bytes
/
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
body {
font-family: Arial, sans-serif;
}
h1 {
color: #1a1a1a;
}
form {
border: 2px solid #ccc;
padding: 20px;
width: 300px;
background-color: #f2f2f2;
border-radius: 5px;
}
label {
display: inline-block;
width: 150px;
font-weight: bold;
margin-bottom: 10px;
}
input[type="number"], select {
padding: 5px 10px;
margin-bottom: 15px;
width: 100%;
border: none;
border-radius: 4px;
box-sizing: border-box;
}
input[type="button"] {
background-color: #4CAF50;
color: white;
padding: 8px 16px;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type="button"]:hover {
background-color: #3e8e41;
}
h2 {
margin-top: 20px;
color: #4CAF50;
font-size: 1.5em;
}