Skip to content

Commit a3a2eb9

Browse files
authored
Create style.css
1 parent 0970778 commit a3a2eb9

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

docs/assets/css/style.css

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)