-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
77 lines (58 loc) · 1.19 KB
/
style.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
/*
Billy Bare Bones Bootstrap Starter Page - Cover Page Edition
Version 1.5
by Elizabeth Moore
http://DancingFraxinus.com
Copyright 2021
For Personal Use Only.
Image Credit: @anniespratt - Unsplash
*/
/*This CSS File is for overriding Bootstrap CSS or for styling your own divs & classes*/
html, body{
height: 100%;
width: 100%;
margin: 0 auto;
}
/* Media */
img{}
/* Typography */
h1.display-3{
font-weight: bold;
}
p.lead{
font-weight: 400;
}
/* Sections */
#landing{
height: 100%;
background-image: url("https://images.unsplash.com/photo-1547013571-585f53927cd4?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
@media screen and (min-width: 800px){
.welcome{
position: absolute;
top: 40%;
left: 60%;
transform: translate(-50%, -50%);
color: azure;
}}
@media screen and (max-width: 799px){
.welcome{
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
color: azure;
}}
.welcome a{
color: azure;
}
/* Components */
#cookies{
font-size: .75em;
}
span{
font-size: .75em;
}