-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcode.css
115 lines (70 loc) · 1.42 KB
/
code.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
body{
margin:5%;
}
.box {
border: 1px solid #cccccc;
border-radius: 20px;
position: absolute;
top: 55%;
left: 50%;
transform: translate(-50%, -50%);
width: 350px;
height: 390px;
background-color: #a5d0d95c;
}
.keys {
display: grid;
grid-template-columns: repeat(4, 2fr);
grid-gap: 10px;
padding: 10px;
margin:auto;
}
.button {
height: 60px;
padding: 5px;
background-color: #fff;
border-radius: 100px;
border: 1px solid #c4c4c4;
background-color:white;
font-size: 25px;
color: #333;
}
.button:hover{
box-shadow: 5px 0px 6px 0px rgba(0,0,0,0.75);
background-color: #eaeaea;
}
.operator{
font-size:25px;
border-radius:70px;
background-color:white;
color: black;
}
.operator:hover{
color: black;
box-shadow: 10px 10px 30px 0px rgba(0,0,0,0.75);
}
.clear {
background-color:white;
font-size:25;
color: black;
width: 100px;
height: 60px;
margin-left:100px;
border-radius:70px;
}
.clear:hover {
background-color: red;
}
.screen{
background-color:white;
width: 70%;
height: 40%;
justify-content: left;
color: black;
border-radius:70px;
font-size: medium;
cursor: default;
padding: 10px;
padding-left: 40%;
margin:10px;
}