-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.php.old.php
129 lines (122 loc) · 2.35 KB
/
default.php.old.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>theretrobook | Welcome</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.png">
<link ref="apple-touch-icon" sizes="128x128" href="favicon.png">
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MPG37RZ"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<center>
<div class="header">
<a href="index.php" style="text-decoration: none"><h1 class="name">[ theretrobook ]</h1></a>
<?php
include 'header.php';
?>
</div>
<div class="welcome">
<p class="welcometext"></p>
<div class="border">
<p class="desc">
</p>
</div>
</div>
<?php
require 'loginarea.php';
?>
</center>
</body>
<style type="text/css">
.header {
position: relative;
border: 1px solid #3B5999;
width: 700px;
background-color: #3D65C2;
background-image: url("banner3.png");
height: 90px;
}
.name {
position: relative;
left: 100px;
left: 120px;
color: #538BDE;
font-family: Tahoma,Verdana,Segoe,sans-serif;
font-size: 35px;
top: -px;
}
.welcome {
position: relative;
font-family: Tahoma,Verdana,Segoe,sans-serif;
border: 1px solid #3D65C2;
background-color: #3D65C2;
width: 550px;
height: 30px;
margin-top: 10px;
left: 75px;
}
.welcometext {
color: white;
position: relative;
margin-top: 5px;
left: 5px;
text-align: left;
}
.border {
position: relative;
border: 1px solid lightgray;
height: 300px;
background-color: white;
top: -9px;
width: 550px;
left: -1px;
border-bottom: 2px solid #3D65C2;
}
.desc {
position: relative;
text-align: left;
left: 10px;
font-size: 15px;
}
@media only screen and (max-width:700px) {
.name {
left: -30px;
font-size: 25px;
margin-top: 30px;
}
.header {
width: 600px;
}
.welcome {
left: 0px;
width: 400px;
z-index: 2;
}
.welcometext {
margin-left: 5px;
}
.border {
height: 400px;
width: 400px;
top: -12px;
}
.desc {
width: 380px;
}
.login {
top: 30px;
height: 30px;
}
.signup {
top: 30px;
height: 30px;
}
}
</style>
</html>