-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcssfile.css
More file actions
75 lines (75 loc) · 1.45 KB
/
Copy pathcssfile.css
File metadata and controls
75 lines (75 loc) · 1.45 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
72
73
74
75
body {
background-color:black;
}
#calci {
top: 10px;
left: 10px;
position: absolute;
}
main {
position:absolute;
top:50px;
left:12%;
height:500px;
width:350px;
font-size:20px;
float:right;
background-color:#000000;
border-radius:2%;
border-style:solid;
border-width:2px;
border-color:#09f;
box-shadow:2px 4px 4px lime;
animation:colorize 4s linear infinite;
}
.display_section {
top:6%;
height:50px;
width:300px;
left:25px;
position:absolute;
}
#display {
position:absolute;
height:50px;
width:300px;
background:transparent;
border-color:transparent;
border-bottom-color:lime;
border-bottom-style:solid;
border-bottom-width:2px;
border-radius:0px;
color:white;
font-size:30px;
padding-top:25px;
text-align:right;
font-family:sans-serif;
text-indent:10px;
color:lightblue;
}
span {
position:absolute;
top:36%;
left:-5px;
}
.button {
padding-top:5px;
margin-left:30px;
margin-bottom:20px;
background: transparent;
font-size:20px;
color:lightblue;
height:40px;
width:50px;
border-radius:10%;
box-shadow:2px 2px 2px black;
border-color:lime;
}
/* For animation purpose */
@keyframes colorize {
20% { filter:hue-rotate(72deg); }
40% { filter:hue-rotate(144deg); }
60% { filter:hue-rotate(216deg); }
80% { filter:hue-rotate(288deg); }
100% { filter:hue-rotate(360deg); }
}