-
Notifications
You must be signed in to change notification settings - Fork 0
/
calc.css
58 lines (54 loc) · 1.18 KB
/
calc.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
body{
background-image: linear-gradient( to right,
#fc00ff
,
#00dbde);
}
#heading{
color:black;
font-size: 40px;
font-weight: bold;
text-shadow: 6px 4px 3px purple;
}
#answerBox{
width: 320px;
height: 70px;
border-radius: 10px;
box-shadow: inset 3px 3px 5px violet,inset -3px -3px 5px black;
}
.calcButtons{
background-image: linear-gradient( to right,
#0f0c29
,
#302b63
,
#24243e);
padding: 10px;
display: inline-block;
border-radius: 15px;
box-shadow: 2px 2px 10px darkslategrey, -2px -2px 20px darkslategray;
}
input{
font-size: 30px;
color: white;
font-family: 'Times New Roman', Times, serif;
font-weight: bold;
width: 70px;
height: 50px;
margin: 5px;
border-radius: 20px;
border: none;
box-shadow: 3px 3px 5px purple, -3px -3px 5px violet;
background-image: linear-gradient( to right,
#0f0c29
,
#302b63
,
#24243e);
outline: none;
}
input:hover{
box-shadow: inset 3px 5px 5px purple,inset -3px -3px 5px violet;
cursor: pointer;
background-color: lightcyan;
}