-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (90 loc) · 1.82 KB
/
style.css
File metadata and controls
93 lines (90 loc) · 1.82 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
* {
margin: 0;
padding: 0;
}
body {
background: linear-gradient(to right,#6A9113 ,#141517);
height: 100vh;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
.container {
height: 60%;
border-radius: 50px;
border: 3px solid rgba(0, 0, 0, 0.604);
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
padding: 2rem;
}
/*.calc-text {
margin-bottom: 20px;
padding-left: 5px;
}
.calc-text p {
width: 100%;
font-size: 3.5rem;
text-align: end;
background: transparent;
color: #fff;
border: none;
outline: none;
word-wrap: break-word;
word-break: break-all;
}*/
.container .user-input {
color: whitesmoke;
font-weight: italic;
font-size: 3rem;
text-align: right;
width: 100%;
}
.container .buttons {
display: grid;
grid-template-columns: repeat(4, 1fr);
row-gap: 2rem;
gap: 1rem;
width: 100%;
place-items: center;
}
.container .buttons p {
height: 4rem;
width: 4rem;
background-color: rgb(230, 217, 217);
display: flex;
align-items: center;
justify-content: center;
color: black;
border-radius: 50%;
font-size: 1.5rem;
font-weight: italic;
}
/*.container .buttons .switch {
background-color: #cac5c5;
}*/
.container .buttons .operator {
background-color: #a7e2ae;
color:rgba(0, 0, 0, 0.594);
}
.container .buttons .Delete {
background-color: #05c31b;
color:rgba(0, 0, 0, 0.594);
}
.container .buttons .number {
background-color: #30303062;
color: #f5f5f5;
}
.container .buttons .zero-wrapper {
grid-column: span 2;
border-radius: 3rem;
background-color:#30303062;
width: 95%;
}
.container .buttons .zero-wrapper .zero {
background-color: transparent;
color: #f5f5f5;
}