-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
93 lines (80 loc) · 1.36 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
* {
padding: 0;
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
html{
height: 100%;
}
body {
background-color: #ececec;
text-align: right;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
#wrapper {
display: flex;
align-items: center;
justify-content: flex-start;
}
.main {
width: 350px;
height: auto;
background-color: #fff;
border-radius: 5px;
box-shadow: 0px 6px 80px rgba(0, 0, 0, 0.24);
margin-left: 3em;
}
.output {
height: 140px;
line-height: 140px;
text-align: right;
padding-right: 30px;
font-size: 40px;
color: black;
overflow-x: auto;
overflow-y: hidden;
}
.calBody button {
width: 72px;
height: 72px;
margin: 5px;
background-color: transparent;
font-size: 20px;
cursor: pointer;
transition: 50ms all ease;
outline: none;
/* now it won't show the outline on Click */
transform: scale(1);
font-weight: 600;
border: none;
}
/* hover effect for the buttons */
.calBody button:hover {
background: rgb(234, 244, 255);
}
.calBody button:active {
transform: scale(0.9);
border-radius: 10px;
}
.calBody {
background: rgb(145, 215, 255);
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
#steps {
font-family: monospace
}
.historyContainer {
padding: 1em;
}
#history {
margin-bottom: 1em
}
#history p {
padding-top: 1em;
font-weight: 600;
font-size: 20px;
}