-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
63 lines (56 loc) · 999 Bytes
/
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
/* add reset styles */
*{
margin: 4px;
}
/* add global styles */
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: row;
text-align: center;
}
div{
margin: auto;
}
h1 {
text-align: center;
}
/* style forms */
form {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
label {
font-size: 1.2em;
margin-bottom: 10px;
}
/* style numbered inputs */
input[type=number] {
width: 100px;
font-size: 1.2em;
padding: 5px;
border: none;
border-bottom: 2px solid #ccc;
text-align: center;
margin-bottom: 10px;
}
button {
padding: 10px 20px;
font-size: 1.2em;
background-color: #4CAF50;
color: #fff;
border: none;
cursor: pointer;
}
/*add hover effect to buttons */
button:hover {
background-color: #3e8e41;
}
p {
text-align: center;
margin-top: 20px;
font-size: 1.2em;
font-weight: bold;
}