-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
65 lines (58 loc) · 1.3 KB
/
Copy pathstyles.css
File metadata and controls
65 lines (58 loc) · 1.3 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
body {
background-color: #f2f2f2;
}
form {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 20px;
padding: 20px;
border-radius: 30px;
background-color: #e0e5ec;
box-shadow: inset 8px 8px 16px #c1c9d0, inset -8px -8px 16px #ffffff;
}
label {
margin: 10px;
font-size: 1.2rem;
font-weight: bold;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
select,
input[type="number"] {
margin: 10px;
padding: 10px;
border: none;
border-radius: 10px;
background-color: #f0f3f8;
box-shadow: inset 4px 4px 8px #c1c9d0, inset -4px -4px 8px #ffffff;
font-size: 1.2rem;
font-weight: bold;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
button[type="button"] {
margin: 10px;
padding: 10px;
border: none;
border-radius: 10px;
background-color: #e0e5ec;
box-shadow: 8px 8px 16px #c1c9d0, -8px -8px 16px #ffffff;
font-size: 1.2rem;
font-weight: bold;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
cursor: pointer;
transition: transform 0.2s ease-in-out;
}
button[type="button"]:hover {
transform: translate(4px, 4px);
box-shadow: 4px 4px 8px #c1c9d0, -4px -4px 8px #ffffff;
}
input[type="hidden"] {
display: none;
}
#result {
margin: 10px;
font-size: 1.2rem;
font-weight: bold;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}