-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrong.css
More file actions
81 lines (71 loc) · 1.21 KB
/
wrong.css
File metadata and controls
81 lines (71 loc) · 1.21 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
}
@media only screen and (max-width: 400px) {
.title h1 {
font-size: 46px;
};
#weatherSubmit
{
width: 95%;
}
input {
width: 95%;
}
}
/* Tablet Styles */
@media only screen and (min-width: 401px) and (max-width: 960px) {
body {
background-color: #F5CF8E; /* Yellow */
}
}
/* Desktop Styles */
@media only screen and (min-width: 961px) {
body {
background-color: #B2D6FF; /* Blue */
}
}
body {
background: url('images/sad.png') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.main
{
display: flex;
justify-content: center;
overflow: hidden;
text-align: center;
}
.background
{
background-color: rgba(167, 158, 158, 0.527);
width: 90%;
margin-left: 5%;
margin-right: 5%;
margin-top: 15%;
padding-bottom: 2.5%;
display: block;
}
h1.center {
font-size: 300px;
font-weight: strong;
text-align: center;
}
#footer
{
position: fixed;
bottom: 0px;
left: 10px;
}
#footer2
{
position: fixed;
bottom: 0px;
left: 100px;
}