-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
52 lines (51 loc) · 956 Bytes
/
index.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
.main-container {
max-width: 400px;
margin: 10vh auto 0 auto;
border: #000 2px solid;
}
body {
height: 100vh;
background-color: #EDCDBB;
}
.header {
text-align: center;
margin-top: 4%;
font-size: 40px;
font-weight: 600;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.disp {
text-align: right;
height: 60px;
line-height: 60px;
padding: 20px 20px;
font-size: 25px;
border: 0.5px solid gray;
color: black;
font-weight: bold;
}
.buttons {
grid-template-columns: 1fr 1fr 1fr 1fr;
display: grid;
border-bottom: 1px solid gray;
border-left: 1px solid gray;
}
.btn {
border: 0.5px solid gray;
height: 60px;
line-height: 60px;
text-align: center;
margin: 0.3%;
font-size: 25px;
cursor: pointer;
transition: 0.5s;
font-weight: bold;
}
.btn:hover {
background: #000;
color: white;
}
#equal-btn {
background: #BF9270;
color: white;
}