forked from ghostCollective/ghostcollective.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathghost.scss
More file actions
44 lines (34 loc) · 779 Bytes
/
ghost.scss
File metadata and controls
44 lines (34 loc) · 779 Bytes
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
/*-- scss:defaults --*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
// colours
$black: #080305;
$white: #fff;
$body-bg: $white;
$body-color: $black;
$navbar-bg: $black;
$navbar-fg: $white;
// font
$font-family-sans-serif: "Open Sans";
/*-- scss:rules --*/
// webforms
input,
textarea {
display: block;
width: 100%;
padding: .375rem .75rem;
font-weight: 400;
color: $black;
border: 1px solid #dee2e6;
border-radius: .25rem;
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn {
color: $white;
background-color: $black;
border-color: transparent;
}
.btn:hover {
background-color: rgba($black, 0.7);
transition: 0.7s;
border-color: transparent;
}