Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download
Views: 39604
1
#smc-startup-banner {
2
width: 350px;
3
/* bootstrap 3.3 has this line height. fix it, if it changes! */
4
line-height: 1.42857143;
5
text-align: center;
6
position: fixed;
7
left: 0;
8
right: 0;
9
top: 100px;
10
margin: auto;
11
max-width:100%;
12
max-height:100%;
13
font-family: sans-serif;
14
font-size: 26px;
15
color: white;
16
}
17
18
#smc-startup-banner-status {
19
font-family: sans-serif;
20
color: #666;
21
text-align: center;
22
position: fixed;
23
bottom: 15px;
24
left: 0;
25
right: 0;
26
}
27
#smc-startup-banner img {
28
vertical-align: middle;
29
width: 282px; /* original 94px */
30
height: 231px; /* original 77px */
31
}
32
#smc-startup-banner .banner-error {
33
width: 350px;
34
opacity: 0.0;
35
animation: banner-error ease-in 31s forwards;
36
float: left;
37
border-radius: 5px;
38
padding: 15px 0;
39
}
40
#smc-startup-banner .banner-blink {
41
width: 350px;
42
border-radius: 5px;
43
padding: 15px 0;
44
background-color: #4474c0;
45
margin-bottom: 5px;
46
opacity: 1.0;
47
animation: banner-red 31s forwards;
48
}
49
@keyframes banner-red {
50
0% {background-color: #4474c0;}
51
95% {background-color: #4474c0;}
52
100% {background-color: #bf1919;}
53
}
54
#smc-startup-banner .banner-blink img {
55
animation: banner-blink 31s forwards;
56
}
57
@keyframes banner-blink {
58
0% {opacity: 1.0;}
59
5% {opacity: .1;}
60
10% {opacity: 1.0;}
61
15% {opacity: .1;}
62
20% {opacity: 1.0;}
63
25% {opacity: .1;}
64
30% {opacity: 1.0;}
65
35% {opacity: .1;}
66
40% {opacity: 1.0;}
67
45% {opacity: .1;}
68
50% {opacity: 1.0;}
69
55% {opacity: .1;}
70
60% {opacity: 1.0;}
71
65% {opacity: .2;}
72
70% {opacity: 1.0;}
73
80% {opacity: .3;}
74
90% {opacity: 0.7;}
75
95% {opacity: 0.1;}
76
100% {opacity: 1.0;}
77
}
78
@keyframes banner-error {
79
95% {opacity: 0.0; background-color: #FFFFFF;}
80
100% {opacity: 1.0; background-color: #bf1919;}
81
}
82
#smc-startup-banner .message {
83
font-size: 14px;
84
}
85
#smc-startup-banner a {
86
color: white;
87
text-decoration: underline;
88
}
89