-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (58 loc) · 1.16 KB
/
style.css
File metadata and controls
67 lines (58 loc) · 1.16 KB
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
html {
font-family: "Lobster", cursive;
padding-top: 150px;
color: white;
background-size: 100%;
background-color: rgb(0, 0, 100);
background-repeat: no-repeat;
#header-img {
float: left;
position: absolute;
display: block;
top: 0px;
left: 0px;
}
#nav-bar {
padding: 0px 10px; /* Some padding */
color: black;
text-align: right; /* Centered text */
font-size: 50px; /* Big font size */
font-weight: bold;
position: absoute; /* Fixed position - sit on top of the page */
top: 0;
width: 100%; /* Full width */
float: right;
position: absolute;
top: 10px;
right: 0px;
}
.nav-bar {
color: black;
background-color: blue;
}
.nav-bar a:hover {
background-color: #ddd;
color: black;
font-size: 100px;
}
div.welcome-text {
margin-top: auto;
margin-right: auto;
}
h1 {
color: rgb(50, 50, 201);
background-image: url("https://images.pexels.com/photos/1059078/pexels-photo-1059078.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
background-size: cover;
text-align: center;
width: auto;
height: 400px;
}
body {
min-height: 100vh;
}
footer {
position: relative;
bottom: 0;
width: 100%;
margin-top: 90px;
}