We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0970778 commit a3a2eb9Copy full SHA for a3a2eb9
docs/assets/css/style.css
@@ -0,0 +1,30 @@
1
+---
2
3
+
4
+@import "{{ site.theme }};
5
+.btn {
6
+ display:inline-block;
7
+ margin-bottom:1rem;
8
+ color:rgba(255,255,255,0.7);
9
+ background-color:rgba(0,62,117,0.25);
10
+ border-color:rgba(255,255,255,0.2);
11
+ border-style:solid;
12
+ border-width:1px;
13
+ border-radius:0.3rem;
14
+ transition:color 0.2s, background-color 0.2s, border-color 0.2s
15
+}
16
+.btn:hover {
17
+ color:rgba(255,255,255,0.8);
18
+ text-decoration:none;
19
+ background-color:rgba(188,207,2,0.5);
20
+ border-color:rgba(255,255,255,0.3)
21
22
+.btn+.btn {
23
+ margin-left:1rem
24
25
+.page-header {
26
+ color:#fff;
27
+ text-align:center;
28
+ background-color:#159957;
29
+ background-image:linear-gradient(90deg, #003E75, #E3E3E3)
30
0 commit comments