-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (56 loc) · 1.17 KB
/
style.css
File metadata and controls
62 lines (56 loc) · 1.17 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
.container{
width: 100%;
height:100vh;
background-color: antiquewhite;
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
align-items: center;
}
.container .heading{
font-size: 50px;
justify-content: center;
align-items: center;
font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
display: flex;
flex-direction: row;
gap: 40px;
}
.calculator{
background-color: rgb(75, 65, 65);
padding: 20px;
border-radius: 20px;
}
.calculator form input{
width: 85px;
height: 50px;
border-radius: 10px;
box-shadow: -2px -2px 4px gray;
font-size: 18px;
cursor: pointer;
margin:3px;
}
form .result{
display: flex;
justify-content: center;
}
form .result input{
width: 100%;
height: 70px;
background-color: rgb(202, 219, 219);
text-align: right;
font-size: 35px;
}
form .result input::placeholder{
color:rgb(116, 111, 111);
font-size: 40px;
text-align: right;
margin-right: 10px;
}
form .equal{
background-color: rgba(213, 241, 219, 0.846);
}
form .upper input{
background-color: rgb(218, 175, 174);
}