-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
71 lines (61 loc) · 1008 Bytes
/
styles.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
62
63
64
65
66
67
68
69
70
71
body {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
height: 98vh;
background-color: lightblue;
}
.main-container {
border: 3px solid black;
background-color: rgb(55, 159, 156);
padding: 8px;
}
.heading {
text-align: center;
border-bottom: 3px solid black;
font-size: 30px;
}
.calc-screen {
background-color: lightgray;
height: 100px;
margin: 8px;
border-radius: 24px;
display: flex;
align-items: center;
justify-content: flex-end;
}
.user-input {
font-size: 70px;
margin: 5px;
}
button {
font-size: 25px;
width: 100%;
margin: 5px;
padding: 35px;
background-color: rgb(153, 229, 13);
border: none;
border-radius: 30px;
}
button:hover {
background-color: rgb(15, 105, 42);
}
#clear,
#del,
#posneg,
#plus {
padding: 35px 25px 35px 25px;
}
#equals {
padding: 35px 80px 35px 80px;
}
.button-row {
display: flex;
margin: 5px;
}
footer {
display: flex;
align-items: center;
font-size: 25px;
}