-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.css
104 lines (89 loc) · 1.96 KB
/
main.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
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
body {
width: 400px;
height: 300px;
margin: 0 10px 0 5px;
overflow: hidden;
overflow-y: scroll;
overflow-x: scroll;
font-family: 'Lato', sans-serif !important;
letter-spacing: 1px;
}
/* erase lines in table borders */
.overflow-scroll {
overflow: hidden;
margin-bottom: 10px;
}
input {
outline: none !important;
box-shadow: 0 0 2px 0 #fff !important;
border-color: #ccc !important;
border-width: 0 0 2px 0 !important;
}
input {
width: 75% !important;
height: 1.7rem !important;
}
input:focus {
outline: none !important;
box-shadow: 0 0 2px 0 #fff !important;
border-color: #ccc !important;
border-width: 0 0 2px 0 !important;
}
.outlined:focus {
box-shadow: 0 0 0 0 #fff !important;
border-color: rgb(0, 31, 63) !important;
}
@keyframes anima {
0% {fill: #22A62B;color: #22A62B;}
10% {fill: #14E3E6;color: #14E3E6;}
20%{fill: #195BEF;color: #195BEF;}
30%{fill: #DF26D9;color: #DF26D9;}
40%{fill: #DF2688;color: #DF2688;}
50%{fill: #FEA903;color: #FEA903;}
60%{fill: #DF26DE;color: #DF26DE;}
70%{fill: #2C4AED;color: #2C4AED;}
80%{fill: #14E3F7;color: #14E3F7;}
90%{fill: #195BEF;color: #195BEF;}
100%{fill: #22A62B;color: #22A62B;}
}
.iconsvg {
animation: anima 30s ease-in infinite;
}
a:focus, .custom-btn:focus, .iconsvg:focus {
outline: none !important;
outline: 0 !important;
box-shadow: 0 0 0 0 #fff !important;
border-color: #fff !important;
/*border-width: 0 !important;*/
}
/*********** HEADER ***********/
header {
position: fixed;
width:100%;
top:0;
left: 0;
background-color: white;
}
.header {
color: #aaa;
letter-spacing: .2em;
font-size: 0.65
left: 0;
}
.link {
filter: alpha(opacity=30);
opacity: 0.3;
-webkit-transition: opacity .1s ease-in-out;
cursor: pointer;
}
.link:hover {
filter: alpha(opacity=100);
opacity: 1;
}
.header-link {
color: #444;
text-decoration: none !important;
}
.spacekeeper-top {
margin-bottom: 30px;
}