-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
87 lines (76 loc) · 1.37 KB
/
styles.css
File metadata and controls
87 lines (76 loc) · 1.37 KB
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
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #f2f2f2;
font-family: 'Helvetica Neue', Arial, sans-serif;
color: #333333;
}
.container {
max-width: 500px;
padding: 40px;
background-color: #ffffff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 28px;
margin-bottom: 30px;
text-align: center;
font-weight: bold;
color: #333333;
}
.form {
display: flex;
flex-direction: column;
}
label {
margin-bottom: 10px;
font-weight: bold;
font-size: 16px;
color: #333333;
}
input[type="number"] {
padding: 12px;
margin-bottom: 20px;
border-radius: 8px;
border: 1px solid #cccccc;
background-color: #f2f2f2;
color: #333333;
font-size: 16px;
}
button {
padding: 12px 24px;
background-color: #0070c9;
color: #ffffff;
border: none;
border-radius: 8px;
font-weight: bold;
font-size: 16px;
cursor: pointer;
}
.result-container {
margin-top: 30px;
padding: 20px;
background-color: #f2f2f2;
border-radius: 8px;
}
h2 {
font-size: 20px;
margin-bottom: 10px;
color: #333333;
}
h3 {
font-size: 16px;
margin-top: 20px;
font-weight: bold;
color: #333333;
}
ul {
list-style-type: none;
padding-left: 0;
color: #333333;
}
li {
margin-bottom: 5px;
}