-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (61 loc) · 1.31 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
70
71
body {
background-color:aliceblue;
font-family: 'Raleway', sans-serif;
font-family: 'Roboto Flex', sans-serif;
}
.container {
max-width: 400px;
margin: 10vh auto 0 auto;
box-shadow: 0px 0px 43px 17px rgba(153, 153, 153,1);
}
.h1 {
text-align: center;
}
#display {
text-align: right;
border-style:groove;
height: 70px; /* 70px */
line-height: 70px; /* 70px */
padding: 10px 6px; /* 10px 4px */
font-size: 30px; /* 30px */
}
.buttons {
display: grid;
border-bottom: 1px solid #999;
border-left: 1px solid #999;
grid-template-columns: 1fr 1fr 1fr 1fr;
}
.buttons > div {
border-top: 1px solid #999;
border-right: 1px solid #999;
}
.button {
border: 0.5px solid #999;
line-height: 100px;
text-align: center;
font-size: 25px;
border-radius: 15px;
cursor: pointer;
}
#clear {
background-color: red;
color: white;
}
#clear:hover {
background-color: white;
color: black;
transition: 0.5s ease-in-out;
}
#equal {
background-color: green;
color: white;
}
#equal:hover {
background-color: #999;
transition: 0.5s ease-in-out;
}
.button:hover {
background-color: #323330;
color: white;
transition: 0.5s ease-in-out;
}