-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (88 loc) · 1.91 KB
/
index.html
File metadata and controls
100 lines (88 loc) · 1.91 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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<html>
<head>
<link rel="canonical" href="properlinux.io"/>
<link href="https://fonts.googleapis.com/css?family=Lusitana" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet"/>
<style>
* {
box-sizing: border-box;
}
html {
font-size: 110%;
}
@media(min-width:60em){html{font-size: 90%}}
body {
font-size: 16px;
font-family: 'Source Sans Pro', sans-serif;
}
p {
font-size: 120%;
line-height: 1.2;
}
.large-text {
font-size: 6.5vw;
font-family: 'Lusitana', serif;
margin: 20px;
}
.container {
display: block;
border: 0px;
height: 60%;
background: #fff;
margin-top: 20px;
margin: auto;
}
.sm-container {
display: block;
border: 0px;
height: 10%;
background: #fff;
margin-top: 2px;
margin: auto;
}
.big-text {
margin: 15px;
font-size: 3.0vw;
}
.small-text {
margin: 2px;
font-size: 1.0vw;
}
.column {
float: left;
width: 50%;
padding: 10px;
}
.row:after {
content: "";
display: table;
clear: both;
}
@media screen and (max-width: 600px) {
.column {
width: 100%;
}
}
</style>
</head>
<body>
<center>
<div class="large-text">ProperLinux</div>
<img class="container" src="tux_circle_bw.svg"/>
<hr/>
<div class="row">
<div class="column">
<a href="https://github.com/ProperLinux">
<img class="sm-container" src="https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/github.svg"/>
</a>
</div>
<div class="column">
<a href="https://twitter.com/ProperLinux">
<img class="sm-container"src="https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/twitter.svg"/>
</a>
</div>
</div>
</center>
</body>
</html>