-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (52 loc) · 861 Bytes
/
style.css
File metadata and controls
62 lines (52 loc) · 861 Bytes
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
body {
font-family: "Arial", sans-serif;
text-align: center;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
h1 {
color: #333;
}
label {
font-size: 1.2em;
margin-right: 10px;
}
input[type="number"] {
padding: 5px;
font-size: 1em;
}
button {
background-color: #3498db;
color: #fff;
padding: 8px 15px;
font-size: 1em;
cursor: pointer;
border: none;
}
button:hover {
background-color: #297fb8;
}
#participantInputs {
margin-top: 20px;
}
input[type="text"] {
padding: 8px;
margin-bottom: 10px;
width: 200px;
box-sizing: border-box;
}
#result {
margin-top: 20px;
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#result h2 {
color: #333;
}
p {
margin: 10px 0;
font-size: 1.1em;
}