-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator.css
89 lines (85 loc) · 1.48 KB
/
calculator.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
body{
text-align: center;
background-color: black;
}
h1{
background-color:white;
color:transparent;
-webkit-text-stroke: 1px #fff;
background: url(back.webp);
-webkit-background-clip: text;
background-position: 0 0;
animation: back 20s linear infinite;
}
@keyframes back{
100%{
background-position: 2000px 0;
}
}
.container
{
margin-top: 150px;
transform: scale(1.5);
}
table{
border-right: 1px solid white;
border-bottom: 1px solid white;
border-radius: 10px;
}
.screen
{
background-color: black;
border: black;
border-bottom: solid white;
/* border-radius: 5px; */
color: white;
font-size: large;
text-align: right;
outline: 0;
}
.number
{
color: white;
background-color: rgb(190, 190, 155);
font-size: 75%;
border-radius: 50%;
}
.number:hover{
background-color: rgb(174, 174, 111);
}
.number0
{
color: white;
background-color: rgb(190, 190, 155);
font-size: 75%;
border-radius: 75px;
}
.number0:hover{
background-color: rgb(174, 174, 111);
}
.sign
{
color: white;
background-color: orange;
border-radius: 50%;
width: 22px;
/* font-size: 75%; */
}
.sign:hover{
background-color: rgb(202, 131, 0);
}
.faltu
{
background-color: rgb(250, 250, 227);
border-radius: 50%;
text-align: center;
}
.faltu:hover{
background-color: rgb(169, 169, 153);
}
.faltu1
{
position: relative;
margin-top: 5px;
margin-left: -0.1px;
}