-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsample.css
41 lines (34 loc) · 872 Bytes
/
sample.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
/* The # is used for ids. */
#homepage{
background-image: url('paris.jpg');
background-size: cover;
background-attachment: fixed;
}
/* The . is used for classes. */
/* classes can be used more than once .*/
/* This is used to center the text on the page. */
.homepage {
color: black;
font-family: 'Fugaz One', cursive;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
font-size: 35px;
min-height: 100vh;
}
/* Formats the About Me. */
.navbar-brand{
font-family: 'Fugaz One', cursive;
font-size: 23px;
}
/* Formats items in the navbar i.e. the dropdown menu etc. */
.nav-link{
font-family: 'Fugaz One', cursive;
font-size: 23px;
}
/* Formats the dropdown items */
.dropdown-item{
font-family: 'Fugaz One', cursive;
}