-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
109 lines (86 loc) · 2.52 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
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
<!doctype html>
<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.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<title>Hello, world!</title>
<style>
body{
font-size: 16px;
font-family: 'Open Sans Condensed', sans-serif;
}
h1{
font-size: 3em;
}
h2{
font-size: 2.5em;
padding-bottom: 0px;
}
h3{
font-size: 1em;
line-height: 1.618em;
}
p{
font-size: 0.8em;
line-height: 1.618em;
}
@media all and (min-width: 960px) {
body{
font-size: 18px;
}
}
@media all and (max-width: 959px) and (min-width: 600px) {
body{
font-size: 16px;
}
}
@media all and (max-width: 599px) and (min-width: 20px) {
body{
font-size: 13px;
}
}
::selection{
background: none;
}
html{
background: url("bg.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body{
background: none
}
.container{
text-align: center;
margin-top: 8%;
color: white;
}
.login{
display: none;
}
.container * {
padding: 5px 10px;
}
textarea{
resize: none;
height: 250px;
/*width:75px;
float: left;
padding: 15px;
display: inline-block;*/
}
img{
height: 50px;
width: 50px;
}
#main_down{
margin-top: 100px;
}
</style>
</head>
<body>