-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (47 loc) · 919 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
* {
box-sizing: border-box;
padding: 1px;
}
body {
background-color: black;
font-family: "Times New Roman" , sans-serif;
}
.container {
background-color: lightslategrey;
max-width: 600px;
margin: 100px auto;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
border-radius: 50px;
}
h1 {
margin-top: 0;
text-align: center;
}
input {
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
margin: 10px 0;
width: 100%;
}
button {
background-color: dimgray;
color: white;
padding: 10px;
border: none;
cursor: pointer;
margin: 10px 0;
width: 100%;
font-size: 18px;
text-transform: uppercase;
transition: background-color 0.2s ease;
}
button:hover {
background-color: black;
}
#total {
font-size: 24px;
font-weight: bold;
margin-top: 10px;
}