-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (76 loc) · 1.35 KB
/
Copy pathstyle.css
File metadata and controls
77 lines (76 loc) · 1.35 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
*{
padding: 0;
margin: 0;
font-family: sans-serif;
box-sizing: border-box;
}
.container{
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.inner{
width: 300px;
height: 380px;
background-color: #fff;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
border-radius: 10px;
padding: 10px;
display: flex;
flex-direction: column;
justify-content: flex-start;
}
.display{
width: 100%;
height: 80px;
background-color: black;
border-radius: 10px;
margin-bottom: 15px;
color: white;
}
.initial{
text-align: right;
padding: 5px;
}
.display .main{
text-align: right;
font-size: 40px;
padding: 5px;
}
.calButton{
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
flex-grow: 1;
}
button:first-child ,
button:nth-child(2){
flex-basis: 45%;
}
button{
flex-basis: 21%;
padding: 10px 0px;
margin: 5px;
font-weight: 900;
border: none;
cursor: grab;
border-radius: 7px;
}
button:hover{
background-color: lightblue;
}
button.control{
background-color: rgb(0, 179, 21);
}
button.control:hover{
background-color: rgb(7, 112, 19);
}
button.equal{
background-color: rgb(202, 24, 24);
}
button.equal:hover{
background-color: rgb(107, 13, 13);
}