-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalculator.css
More file actions
48 lines (40 loc) · 830 Bytes
/
calculator.css
File metadata and controls
48 lines (40 loc) · 830 Bytes
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
body{
background: url(math.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
color: #ffffff;
}
.normalBackground{
width: 40%;
margin-top: 10%;
border: 1px solid gray;
border-radius: 5px;
padding: 5%;
background-color: rgba(0, 51, 153, 0.85);
font-weight: 500;
box-shadow: 5px 5px 5px gray;
}
button{
height: 70px;
border-radius: 5px;
background-color: #80b2ff;
color: #000000;
}
.display{
height: 70px;
border: 2px solid #80b2ff;
border-radius: 5px;
width: 110%;
margin: -5% 0px 5% -5%;
background-color: #ffffff;
color: #000000;
}
h1{
float: right;
}
#colorSelect {
font-size: 30px;
text-shadow: -10px 0px #000000, 0px 10px #000000, 10px 0px #000000, 0px -10px #000000;
}