-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (84 loc) · 2.19 KB
/
index.html
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
<html>
<head>
<title>Rant.</title>
<style>
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');
@media (max-width:635px) {
.big-text {
font-size: 10vw;
}
#midnight-logo{
width: 50vw;
height: auto;
}
.faq {
text-align: left;
display: inline-block;
}
}
@media (min-width:635px) {
.big-text {
font-size: 100px;
}
.faq {
text-align: left;
display: inline-block;
width: 635px;
}
#midnight-logo{
width: 320px;
height: auto;
padding-top: 25px;
}
}
@media (max-width:980px) {
.big-text {
font-size: 10vw;
}
}
body {
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(to bottom, #400849 0%, #250231 100%);
color: #fff;
font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}
.small-text {
font-size: 5vw;
}
.text-centered {
text-align: center;
}
.footer {
-webkit-margin-before: 2em;
color: #24497b;
padding-bottom: 25px;
}
question {
font-size: 20px;
-webkit-margin-before: 1em;
display: block;
}
answer {
-webkit-margin-before: 0.5em;
display: block;
}
button{
background: linear-gradient(to bottom, #004590 0%, #012a54 100%);
border: 2px solid #002a65;
border-radius: 4px;
text-shadow: #001940 0px 1px;
color: white;
font-size: 15px;
padding: 10px;
}
</style>
</head>
<body>
<div class="box big-text">
<div>I hate GitHub Pages...</div>
<div>and you should, too!</div>
</div>
</body>
</html>