forked from devops329/devops
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebServerDefault.html
More file actions
115 lines (105 loc) · 2.27 KB
/
webServerDefault.html
File metadata and controls
115 lines (105 loc) · 2.27 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>QA & DevOps 329</title>
<style>
* {
box-sizing: border-box;
font-family: Arial, sans-serif;
margin: 0;
}
main {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
font-size: 3vw;
animation: fly-in 1s ease-out;
}
.large {
display: block;
}
p {
font-size: 2em;
display: flex;
color: #666;
}
.course {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.courseName {
margin: 0.25em;
font-size: 3em;
font-weight: bold;
color: #111;
}
.courseNum {
margin: 0.25em;
font-size: 3em;
color: #da9512;
}
.small {
display: none;
font-size: 30vw;
color: #f3cf8c;
}
a {
padding: 0 1em 0 0;
text-decoration: none;
color: #557aa0;
}
.small a {
color: #f3cf8c;
}
@keyframes fly-in {
0% {
transform: translateX(-200%);
}
80% {
transform: translateX(1%);
}
100% {
transform: translateX(0%);
}
}
@media (max-width: 500px) {
body {
background-color: rgb(23, 23, 23);
}
.large {
display: none;
}
.small {
display: block;
}
a {
padding: 0;
}
}
</style>
</head>
<body>
<main>
<div class="large">
<p>Welcome to</p>
<div class="course">
<div class="courseName">QA & DevOps</div>
<div class="courseNum">329</div>
</div>
<p id="serviceName">
<a href="https://learn.cs329.click">Learn</a>
<a href="https://pizza.cs329.click">JWT Pizza</a>
</p>
</div>
<div class="small">
<a href="https://learn.cs329.click">260</a>
</div>
</main>
</body>
</html>