-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
50 lines (44 loc) · 1000 Bytes
/
index.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
body,
h1 {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
sans-serif;
margin: 10px;
padding: 0;
background-color:lightslategray;
}
.container {
align-items: center;
text-align: center;
max-width: 300px;
margin: 0 auto;
padding: 10px;
background-color: aliceblue;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 5px;
height: 450px;
}
input[type="text"] {
width: 250px;
height: 70px;
margin-top: 0px;
font-size: 35px;
border: none;
text-align: right;
background: rgba(12, 12, 12, 0.1);
border-radius: 6px;
padding-right: 0.5rem;
box-shadow: inset 8px 8px 8px #cbcedc;
}
button {
cursor: pointer;
width: 40px;
height: 30px;
font-size: 15px;
border: none;
border-radius: 6px;
box-shadow: inset 8px 8px 8px gray;
}
.btn:hover {
background-color: antiquewhite;
}