-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
58 lines (45 loc) · 1.31 KB
/
header.php
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
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<style type="text/css">
body{
background: none;
color: white;
}
html {
background: url(background.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#homePageContainer{
text-align: center;
margin-top:120px;
}
#locationPageContainer{
width:90%;
}
#logInForm{
display: none;
}
.signSwitch{
font-weight: bold;
text-decoration: underline;
}
#diary{
margin-top: 15px;
height:83%;
width:100%;
}
#logout{
margin-top:8px;
margin-bottom: 8px;
}
</style>
<title>Secret Diary</title>
</head>