-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (60 loc) · 1.03 KB
/
style.css
File metadata and controls
71 lines (60 loc) · 1.03 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
* {
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #667eea, #764ba2);
}
.container {
background: #fff;
padding: 25px;
width: 320px;
border-radius: 10px;
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
h2 {
text-align: center;
margin-bottom: 20px;
}
.input-group {
margin-bottom: 15px;
}
.input-group label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
.input-group input {
width: 100%;
padding: 8px;
}
.checkbox-group label {
display: block;
margin-bottom: 8px;
}
button {
width: 100%;
padding: 10px;
background: #667eea;
color: white;
border: none;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
}
button:hover {
background: #5a67d8;
}
.output {
margin-top: 15px;
}
.output input {
width: 100%;
padding: 10px;
font-weight: bold;
text-align: center;
}