-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (71 loc) · 1.2 KB
/
style.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
72
73
74
75
76
77
78
79
80
81
82
83
84
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
* {
font-family: 'Ubuntu', sans-serif;
}
body {
background-image: linear-gradient(to right, #141e30, #243b55);
}
h1 {
text-align: center;
color: wheat;
}
.buttons {
margin: 0 10px;
padding: 0;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.operatorBtn,
#equalBtn {
background-color: #f0932b;
}
button {
margin: 3px;
width: 90px;
height: 90px;
border: 0px black;
border-radius: 50%;
text-align: center;
font-size: 30px;
background-color: #313131;
color: white;
}
.clear button {
border-radius: 45px;
background-color: #ef3f2a;
}
.display {
display: flex;
flex-direction: column;
text-align: right;
margin: 0px 10px;
/* border: 1px solid pink; */
}
#primary-display {
font-size: 60px;
}
#secondary-display {
height: 30px;
font-size: 30px;
color: gray;
}
.clear {
align-self: flex-start;
width: 410px;
display: flex;
flex-direction: row;
/* border: 1px solid pink; */
}
.clear button {
padding: 20px 40px;
width: 100%;
}
.calculator {
border-radius: 30px;
margin: 0 auto;
width: 410px;
background-color: black;
padding: 20px;
color: white;
}