-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
56 lines (48 loc) · 967 Bytes
/
css.css
File metadata and controls
56 lines (48 loc) · 967 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
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: #f2f2f2;
font-family: Arial, sans-serif;
background-image:url("background.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100vh;
margin: 0;
}
.calculator {
background: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(117, 56, 56, 0.1);
width: 260px;
}
#a {
width: 100%;
height: 40px;
font-size: 1.5em;
text-align: right;
margin-bottom: 15px;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
}
.buttons {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
}
button {
padding: 20px;
font-size: 1.2em;
border: none;
background-color: #eee;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.2s;
}
button:hover {
background-color: #ddd;
}