-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (69 loc) · 1.23 KB
/
style.css
File metadata and controls
71 lines (69 loc) · 1.23 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
#inp
{
border: 2px solid;
border-radius: 25px;
font-family: Arial, Helvetica, sans-serif;
background-color: #D3C5E5;
justify-content: center;
font-size: 4.5rem;
width: 100%;
color: #200246;
}
.sy
{
border: none;
border-radius: 50%;
background-color:#a42097;
font-family: Arial, Helvetica, sans-serif;
font-size: 4rem;
width: 100px;
height: 100px;
color: #eec5e7;
cursor: pointer;
font-weight: bold;
}
#keys
{
display: grid;
grid-template-columns: repeat(4,1fr);
gap: 10px;
padding: 25px;
background-color: rgb(32, 3, 76);
border-radius: 25px;
}
#calculator
{
height: 100%;
width: 100%;
}
button
{
border: none;
border-radius: 50%;
background-color: #735DA5;
font-family: Arial, Helvetica, sans-serif;
font-size: 4rem;
width: 100px;
height: 100px;
color: #D3C5E5;
cursor: pointer;
font-weight: bold;
}
button:hover
{
background-color: #766d8c;
}
button:active
{
background-color:#D3C5E5;
color: #735DA5;
}
.d
{
font-size: 4rem;
background-color: #a42097;
color: #eec5e7;
}
body{
background-color:#735DA5;
}