-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (63 loc) · 1.33 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
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Roboto:wght@400;500&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
box-sizing: border-box;
}
body{
background: rgb(60, 60, 60);
}
.calculator{
width: 100%;
max-width: 280px;
margin: 50px auto;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 0 5px #999999;
}
.screen{
background-color: orange;
width: 100%;
min-height: 100px;
text-align: right;
font-size: 24px;
padding: 10px;
padding-top: 20px;
}
.cal-buttons{
background: #ffffff;
padding: 15px;
}
ul#buttons{
list-style-type: none;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
ul#buttons li{
font-size: 24px;
color: #000000;
background: #ecedef;
width: 20%;
margin:5px 2.5%;
padding-top: 11px;
height: 50px;
border-radius: 50%;
font-weight: bold;
cursor: pointer;
text-align: center;
transition: all 0.3s;
}
ul#buttons li:hover,ul#buttons li:visited{
background: green;
color: #ffffff;
}
ul#buttons li:active{
background: #000000;
}
li#equals{
width: 100% !important;
border-radius: 10px !important;
}