-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (102 loc) · 2.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
body {
overflow: hidden;
justify-content: center;
align-items: center;
}
.container {
max-width: 400px;
width: 100%;
margin: 10vh auto 0 auto;
box-shadow: 0 0 43px 17px rgba(153, 153, 153, 0.5);
font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif ;
}
#display {
text-align: right;
height: 70px;
line-height: 70px;
padding: 16px 8px;
overflow-x: scroll;
font-size: 25px;
border: none;
}
input {
color: transparent;
text-shadow: 0 0 0 black;
}
#display:focus {
border-color: transparent !important;
-webkit-box-shadow: none;
box-shadow: none;
outline: none;
}
#display::-webkit-scrollbar {
display: none;
}
#display::-webkit-scrollbar-track {
background: #f1f1f1;
}
#display::-webkit-scrollbar-thumb {
background: #888;
}
#display::-webkit-scrollbar-thumb:hover {
background: #555;
}
#display:hover {
overflow-x: auto;
cursor: pointer;
}
::selection { background: transparent; } ::-moz-selection { background: transparent; }
.buttons {
display: grid;
border-bottom: 1px solid #ccc;
border-left: 1px solid #ccc;
grid-template-columns: repeat(4, 1fr);
}
.buttons > div {
border-right: 1px solid #ccc;
border-top: 1px solid #ccc;
padding: 16px 0;
text-align: center;
font-size: 25px;
cursor: pointer;
}
.button {
background-color: #f1f1f1;
}
#equal {
background-color: #6117ec;
color: white;
}
.button:hover {
background-color: #dddddd;
transition: 0.3s ease-in-out;
}
#equal:hover {
background-color: #4f0acf;
transition: 0.3s ease-in-out;
}
.textWrapper {
position: relative;
font-size: 80px;
margin-left: 170px;
text-transform: uppercase;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
span {
position: relative;
display: inline-block;
color: #4f0acf;
animation: waveAnim 1s infinite;
animation-delay: calc(.1s * var(--i));
}
@keyframes waveAnim {
0% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
100% {
transform: translateY(0);
}
}