-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
87 lines (75 loc) · 2.37 KB
/
styles.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
@import 'https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600;700&display=swap';
code {
font-family: "Fira Code";
}
/* css styles */
.nav-footer {
border-top: 1px solid #dee2e6;
}
main {
font-weight: 300;
}
.quarto-title-banner .code-tools-button {
color: #f1f1f1;
}
.navbar {
box-shadow: none;
}
.navbar,
.quarto-title-banner {
animation:backgroundtransition 100s;
-moz-animation:backgroundtransition 100s infinite; /* Firefox */
-webkit-animation:backgroundtransition 100s infinite; /* Safari and Chrome */
}
@-moz-keyframes backgroundtransition /* Firefox */ {
0% {background: #B71C1C;} /* red */
10% {background: #311b92;} /* deep purlple */
20% {background: #0D47A1;} /* blue */
30% {background: #004D40;} /* teal */
40% {background: #212121;} /* grey */
50% {background: #1A237E;} /* indigo */
60% {background: #33691E;} /* ligth green */
70% {background: #006064;} /* cyan */
80% {background: #FBC02D;} /* lime */
90% {background: #263238;} /* blue gray*/
100% {background: #B71C1C;} /* red */
}
@-webkit-keyframes backgroundtransition /* Safari and Chrome */ {
0% {background: #B71C1C;} /* red */
10% {background: #311b92;} /* deep purlple */
20% {background: #0D47A1;} /* blue */
30% {background: #004D40;} /* teal */
40% {background: #212121;} /* grey */
50% {background: #1A237E;} /* indigo */
60% {background: #33691E;} /* ligth green */
70% {background: #006064;} /* cyan */
80% {background: #FBC02D;} /* lime */
90% {background: #263238;} /* blue gray*/
100% {background: #B71C1C;} /* red */
}
@-webkit-keyframes pulse_animation {
0% { -webkit-transform: scale(1); }
16% { -webkit-transform: scale(1); }
33% { -webkit-transform: scale(1.2); }
50% { -webkit-transform: scale(1); }
66% { -webkit-transform: scale(1); }
83% { -webkit-transform: scale(1.2); }
}
.pulse {
-webkit-animation-name: 'pulse_animation';
-webkit-animation-duration: 2000ms;
-webkit-transform-origin: 50% 60%;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}
/* fix code size */
pre.sourceCode { font-size: 0.75em;}
.cell-output > pre > code { font-size: 0.9em;}
/* this is for quarto demo post */
.layout-example {
background: #adb5bd;
color: #fff;
text-align: center;
margin-bottom: 1em;
padding-top: 1em;
}