-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
73 lines (67 loc) · 1.38 KB
/
index.css
File metadata and controls
73 lines (67 loc) · 1.38 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
body{
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
width: 100%;
background-color:rgb(0, 7, 18);
font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.container{
display: flex;
flex-direction: column;
align-items: center;
min-height: 40%;
width: 23%;
gap: 0.5rem;
box-shadow: .1px .1px 5px 5px rgb(55, 82, 135);
border-radius: 3%;
padding: 1rem;
}
.display{
min-height: 15vh;
width: 90%;
display: flex;
justify-content: right;
align-items:end;
font-size: 1.75rem;
font-weight: 200;
margin-right: 15px;
margin-left: 15px;
padding: 5px 15px;
color: white;
word-break: break-all;
font-family: 'Times New Roman', Times, serif;
background-color: rgba(146, 140, 140, 0.116);
border-radius: 15px;
}
.buttons{
display: flex;
justify-content: center;
flex-wrap:wrap;
padding: 1rem 0.5rem;
gap: 20px 25px;
}
.char{
background-color: rgb(122, 120, 215);
}
#equal_to{
background-color:rgb(0, 255, 123);
}
button{
height: 60px;
width: 60px;
font-size: 1.5rem;
font-weight: 500;
text-align: center;
border-radius: 50%;
border: 0;
cursor: pointer;
color: black;
background-color: rgb(120, 151, 215);
}
button:active{
transform: translateY(4px);
}