bluenevus commited on
Commit
3712fd3
·
verified ·
1 Parent(s): 2c53d4e

Create assets/custom.css

Browse files
Files changed (1) hide show
  1. assets/custom.css +96 -0
assets/custom.css ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ background-color: #F7F7F7;
3
+ color: #454545;
4
+ }
5
+
6
+ .navbar {
7
+ background-color: #116F70;
8
+ }
9
+
10
+ .btn-primary {
11
+ background-color: #1C304A;
12
+ border-color: #1C304A;
13
+ }
14
+
15
+ .btn-primary:hover {
16
+ background-color: #116F70;
17
+ border-color: #116F70;
18
+ }
19
+
20
+ .btn-secondary {
21
+ background-color: #116F70;
22
+ border-color: #116F70;
23
+ }
24
+
25
+ .btn-secondary:hover {
26
+ background-color: #00AEAF;
27
+ border-color: #00AEAF;
28
+ }
29
+
30
+ .btn-tertiary {
31
+ background-color: #E0E0E0;
32
+ border-color: #E0E0E0;
33
+ color: #1C304A;
34
+ }
35
+
36
+ .btn-tertiary:hover {
37
+ background-color: #DEF4F4;
38
+ border-color: #DEF4F4;
39
+ color: #1C304A;
40
+ }
41
+
42
+ .card {
43
+ background-color: #FFFFFF;
44
+ border-color: #E0E0E0;
45
+ }
46
+
47
+ .dot-flashing {
48
+ position: relative;
49
+ width: 10px;
50
+ height: 10px;
51
+ border-radius: 5px;
52
+ background-color: #1C304A;
53
+ color: #1C304A;
54
+ animation: dot-flashing 1s infinite linear alternate;
55
+ animation-delay: 0.5s;
56
+ display: inline-block;
57
+ margin-left: 5px;
58
+ }
59
+
60
+ .dot-flashing::before, .dot-flashing::after {
61
+ content: '';
62
+ display: inline-block;
63
+ position: absolute;
64
+ top: 0;
65
+ }
66
+
67
+ .dot-flashing::before {
68
+ left: -15px;
69
+ width: 10px;
70
+ height: 10px;
71
+ border-radius: 5px;
72
+ background-color: #1C304A;
73
+ color: #1C304A;
74
+ animation: dot-flashing 1s infinite alternate;
75
+ animation-delay: 0s;
76
+ }
77
+
78
+ .dot-flashing::after {
79
+ left: 15px;
80
+ width: 10px;
81
+ height: 10px;
82
+ border-radius: 5px;
83
+ background-color: #1C304A;
84
+ color: #1C304A;
85
+ animation: dot-flashing 1s infinite alternate;
86
+ animation-delay: 1s;
87
+ }
88
+
89
+ @keyframes dot-flashing {
90
+ 0% {
91
+ background-color: #1C304A;
92
+ }
93
+ 50%, 100% {
94
+ background-color: rgba(28, 48, 74, 0.2);
95
+ }
96
+ }