-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (91 loc) · 1.96 KB
/
Copy pathstyle.css
File metadata and controls
105 lines (91 loc) · 1.96 KB
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
body {
margin: 0;
padding: 0;
background: rgb(25, 9, 129);
background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgb(82, 35, 72) 100%);
display: grid;
}
.title {
color: black;
font-size: 30px;
text-align: center;
margin-bottom: 50px;
}
.calculator {
border-radius: 20px;
width: 400px;
height: 550px;
background-color: black;
margin: auto;
box-shadow: 8px -5px 20px rgb(0, 0, 0);
}
.calcResult {
background: rgb(255, 255, 255);
background: linear-gradient(225deg, rgba(247, 247, 255, 0.52) 0%, rgba(181, 211, 255, 0.928) 50%, rgb(58, 155, 252) 100%);
height: 100px;
display: flex;
justify-content: end;
align-items: center;
border-radius: 20px 20px 0px 0px;
}
.calcBody {
background: rgb(2, 2, 41);
background: radial-gradient(circle, rgb(62, 7, 59) 0%, rgb(108, 16, 67) 50%, rgb(82, 35, 72) 100%);
height: 450px;
display: grid;
grid-template-columns: repeat(4,1fr);
border-radius: 20px;
}
#BtnSign{
border-radius: 0px 0px 0px 20px;
}
#BtnEqual{
border-radius: 0px 0px 20px 0px;
}
#BtnAC{
grid-column: span 2;
}
#BtnRemove{
grid-column: span 2;
}
.calcButton{
border: 1px solid black;
font-size: larger;
cursor: pointer;
transition: all .2s;
}
.calcButton:hover{
text-shadow: 1px 1px 1px gray;
background-color: lightgray;
}
.calcNum{
background-color: rgb(151, 91, 151);
color: white;
transition: all .2s;
}
.calcNum:hover{
background-color: rgb(115, 69, 115);
text-shadow: 1px 1px 1px gray;
color: white;
}
.topCalc{
background-color: rgb(104, 36, 194);
color: white;
}
.topCalc:hover{
background-color: rgb(86, 29, 161);
text-shadow: 1px 1px 1px gray;
color: white;
}
.calcOpr{
background-color: rgb(161, 111, 210);
color: white;
}
.calcOpr:hover{
background-color: rgb(104, 80, 127);
color: white;
}
#result{
color: white;
margin: 25px;
}