-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
55 lines (46 loc) · 881 Bytes
/
styles.css
File metadata and controls
55 lines (46 loc) · 881 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
body{
padding: 0;
margin: 0;
height: 100vh;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
display: flex;
background: #ef9ffe;
align-items: center;
justify-content: center;
}
.container {
}
.calculator {
background-color: #3a4452;
padding: 20px;
border-radius: 5px;
}
.calculator form input {
border: 0;
outline: 0;
width: 60px;
height: 60px;
border-radius: 10px;
background: transparent;
color: white;
margin: 10px;
cursor: pointer;
border: 1px solid white;
}
form .display{
display: flex;
justify-content: flex-end;
margin: 20px 0;
}
form .display input {
text-align: right;
flex: 1;
font-size: 45px;
}
#equalsign {
background-color: darkgray;
width: 43%;
}
.operator {
background-color: purple;
}