-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmn.css
More file actions
118 lines (104 loc) · 2.42 KB
/
mn.css
File metadata and controls
118 lines (104 loc) · 2.42 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
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
116
117
118
/* Colour changing effect */
.shadow:hover:after{
content: ' ';
position: absolute;
top: -2px;
left: -2px;
background: linear-gradient(45deg,#000000,#0000ff,#00ff00,#ffff00,#ff0000,#000000,#0000ff,#00ff00,#ffff00,#ff0000);
background-size: 500%;
width: calc(100% + 4px);
height: calc(100% + 4px);
z-index: -1;
animation: animate 20s linear infinite;
filter: blur(20px);
}
/* animation frame of above effect */
@keyframes animate{
0%{
background-position: 0 0;
}
50%{
background-position: 200% 0;
}
100%{
background-position: 0 0;
}
}
/* 1st Horizontal line */
hr.style-one {
margin: auto;
width: 90%;
height: 30px;
border-style: solid;
border-color: rgb(0, 255, 30);
border-width: 6px 0 0 0;
border-radius: 20px;
}
hr.style-one:before {
display: block;
content: "";
height: 30px;
margin-top: -31px;
border-style: solid;
border-color: black;
border-width: 0px 0 5px 0;
border-radius: 20px;
}
/* 2nd & 3rd Horizontal line (middle)*/
hr.style-two-three {
background-color: rgb(0, 255, 30);
height: 10px;
border-radius: 35px;
}
/* 4th Horizontal line (last)*/
hr.style-four {
margin: auto auto 20px auto;
width: 90%;
height: 30px;
border-style: solid;
border-color: rgb(0, 255, 30);
border-width: 0 0 6px 0;
border-radius: 20px;
}
hr.style-four:before {
display: block;
content: "";
height: 30px;
margin-top: -31px;
border-style: solid;
border-color: black;
border-width: 10px 0 0 0;
border-radius: 20px;
}
/* formatting for table & textbox */
#addTxt{
width: 100%;
height: 15vh;
padding-left: 12px;
padding-top: 10px;
}
table, th, td{
border: 1px solid;
}
/* <============== Aadarsh's CSS ==================================================================> */
#myCheck {
transform: scale(1.5);
margin: .6rem 1rem .6rem .3rem;
}
/* <===============================================================================================> */
/* animation frame for disappearing table content. Called onclick. So animation frame calling part is handled by javascript */
@keyframes myAnimation{
0%{
opacity: 1;
transform: rotateX(90deg);
}
50%{
opacity: 0.5;
transform: rotateX(0deg);
}
100%{
display: none;
opacity: 0;
transform: rotateX(90deg);
}
}