Skip to content

Commit bb640f9

Browse files
committed
Add temprorary home page
1 parent e8ca4c5 commit bb640f9

File tree

4 files changed

+121
-0
lines changed

4 files changed

+121
-0
lines changed
103 KB
Binary file not shown.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>LabConnect</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<link rel="stylesheet" href="styles.css">
8+
</head>
9+
<body>
10+
<h1>LabConnect</h1>
11+
<div class="bottom">
12+
<p>Coming soon...</p>
13+
<h6>&#127279; 2021 LabConnect Team</h6>
14+
</div>
15+
</body>
16+
</html>
Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
/* External fonts */
2+
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,300;0,400;0,700;1,700&family=IBM+Plex+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
3+
@import url('https://necolas.github.io/normalize.css/latest/normalize.css');
4+
5+
@font-face{
6+
font-family: "Cascadia Mono";
7+
src : url("CascadiaMono.woff2");
8+
}
9+
10+
body{
11+
background: url(texture.jpg);
12+
font-family: "Cascadia Mono", Courier, monospace;
13+
color: #ebdbb2;
14+
overflow-wrap: break-word;
15+
font-size: 12pt;
16+
margin: 0.4em;
17+
width: 80%;
18+
margin: auto;
19+
}
20+
h1{
21+
text-align: center;
22+
font-size: 24pt;
23+
}
24+
h2, h3{
25+
margin-left: 0.1em;
26+
}
27+
p, li{
28+
margin-left: 0.5em;
29+
}
30+
/*h6{
31+
text-align: center;
32+
}*/
33+
figure img{
34+
display: block;
35+
margin-left: auto;
36+
margin-right: auto;
37+
max-width: 100%;
38+
}
39+
figcaption{
40+
text-align: center;
41+
font-style: italic;
42+
}
43+
code{
44+
background-color: #282828;
45+
font-family: "IBM Plex Mono", monospace;
46+
}
47+
.bottom{
48+
text-align: center;
49+
}
50+
.bottom a{
51+
color: #83a598;
52+
}
53+
.bottom a:hover{
54+
color: #fb4934;
55+
}
56+
.bottom a:active{
57+
color: #fb4934;
58+
}
59+
a:visited{
60+
color: #cc241d;
61+
}
62+
63+
a {
64+
color: #b8bb26;
65+
font-weight: bold;
66+
67+
}
68+
69+
a:hover{
70+
color: #fb4934;
71+
}
72+
73+
a:active{
74+
color: #fb4934;
75+
}
76+
@media (max-width: 700px){
77+
#shout{
78+
font-size: 1em;
79+
}
80+
body{
81+
width: auto;
82+
}
83+
}
84+
.sourceCode{
85+
display: inline-block;
86+
margin-left: 1em;
87+
margin-right: 1em;
88+
}
89+
div.sourceCode{
90+
max-width: 100%;
91+
}
92+
code.sourceCode{
93+
border-left-width: 0px;
94+
padding: 1em;
95+
}
96+
97+
h3#shout{
98+
font-family: "Cascadia Mono","IBM Plex Mono", monospace;
99+
margin-left: unset;
100+
}
101+
h1.based{
102+
text-decoration: underline;
103+
font-weight: bold;
104+
color: #d3869b;
105+
}
29.7 KB
Loading

0 commit comments

Comments
 (0)