-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (85 loc) · 1.65 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: url(background.svg) center center/cover;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.mainContainar {
width: 319px;
height: 499px;
backdrop-filter: blur(3px);
background-color: rgba(238, 238, 238, 0.377);
border: 2px solid rgb(116, 116, 116);
user-select: none;
}
.mainContainar h1 {
margin: 7px 0 0 7px;
color: #d2dbe7;
}
.screen {
width: 100%;
height: 141px;
padding: 8px;
margin: 14px 0;
background-color: rgba(238, 238, 238, 0.657);
}
#historyScreen {
width: 100%;
height: 60px;
padding: 15px 0;
text-align: end;
font-size: 20px;
background-color: #bcc0c300;
border: none;
overflow: hidden;
outline: none;
}
#mainScreen {
width: 100%;
outline: none;
text-align: end;
font-size: 40px;
height: 50px;
background-color: #bcc0c300;
border: none;
overflow: hidden;
}
.buttns {
display: grid;
grid-template-columns: repeat(4, 1fr);
}
.btn {
width: 76px;
height: 53px;
font-size: 30px;
margin: 1px;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(238, 238, 238, 0.657);
}
.btn:hover {
background-color: rgba(238, 238, 238, 0.863);
cursor: pointer;
}
.btn:active {
background-color: #3c87fa;
color: #eee;
}
#percentage:hover:before{
content: attr(tooltip);
font-size: 16px;
background-color: #000;
color: #fff;
padding: 5px;
width: 190px;
clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0 51%, 0% 0%);
position: absolute;
left: -200px;
}