-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
51 lines (50 loc) · 967 Bytes
/
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
body{
background-color: whitesmoke;
}
::placeholder{
color: black;
}
.calc{
width: 400px;
height: 550px;
margin:auto auto;
padding: auto;
background-color: darkgrey;
border: 2px black ridge;
border-radius: 7px;
/*max-width: auto;
max-height: auto;
min-width: auto; \\ By Jerin jj
min-height: auto;*/
}
.screen{
width: 95%;
height: 90px;
margin: 7px;
border-radius: 6px;
border: 1px white solid;
text-align: right;
font-size: 30px;
pointer-events: none;
}
.btn{
height: 50px;
width: 80px;
margin-left: 14px;
margin-top: 30px;
font-size: x-large;
color: #fff;
background: dimgray;
border: 1px solid dimgray;
border-radius: 4px;
}
.btn:active{
height: 50px;
width: 80px;
margin-left: 14px;
margin-top: 30px;
font-size: x-large;
text-shadow: 0px 0px 25px #fff;
border: #fff 2px solid;
border-radius: 4px;
}