-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
61 lines (54 loc) · 970 Bytes
/
main.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
51
52
53
54
55
56
57
58
59
60
61
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 80vh;
}
.screen {
height: 50px;
width: 301px;
text-align: right;
background-color: #eee;
margin-bottom: 20px;
}
.input {
position: relative;
top: 20px;
right: 20px;
}
button {
padding: 13px;
width: 70px;
height: 40px;
margin-bottom: 5px;
font-size: 15px;
background-color: #EDEDED;
}
.body{
position: absolute;
background-color: #171717;
padding: 20px;
box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
border-radius: 5%;
}
#clear {
background-color: #DA0037;
color: white;
border-radius: 20%;
border: none;
position: relative;
left: 225px;
}
#equals {
background-color: #444444;
border:none;
border-radius: 15%;
}
#delete{
background-color:#FF7600;
border: none;
border-radius: 20%;
position: relative;
left: 70px;
}