-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
98 lines (85 loc) · 1.53 KB
/
style.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
body {
background-color: #2c3e50;
color: #fff;
font-family: Arial, sans-serif;
}
form {
display: flex;
flex-direction: column;
align-items: center;
background-color: #555;
padding: 20px;
border-radius: 10px;
margin-top: 50px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
label {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
width: 100%;
margin-bottom: 10px;
}
select,
input[type="number"],
input[type="date"] {
margin-left: 10px;
border-radius: 5px;
border: none;
padding: 5px;
}
input[type="number"]::placeholder {
color: #bbb;
}
h1 {
background-color: #f39c12;
color: #fff;
text-align: center;
padding: 20px;
border-radius: 10px;
margin: 0 auto;
width: 50%;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
footer {
background-color: #555;
color: #fff;
text-align: center;
padding: 10px;
margin-top: 50px;
}
button[type="submit"] {
background-color: #f39c12;
color: #fff;
border: none;
border-radius: 5px;
padding: 10px 20px;
margin-top: 20px;
cursor: pointer;
font-weight: bold;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}
button[type="submit"]:hover {
background-color: #e67e22;
}
input:focus,
select:focus {
outline: none;
box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.5);
}
label[for="amount"], label[for="sold"] {
font-weight: bold;
color: #fff;
}
footer {
font-size: 12px;
text-transform: uppercase;
}
footer a {
color: #fff;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}