Compare commits
2 commits
d8024fdc02
...
1f204b581b
Author | SHA1 | Date | |
---|---|---|---|
1f204b581b | |||
7708be1318 |
2 changed files with 20 additions and 8 deletions
11
index.html
11
index.html
|
@ -1,6 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html lang="en_GB">
|
||||
<head>
|
||||
<!-- opengraph -->
|
||||
<meta property="og:title" content="The Cooperative Software License" />
|
||||
<meta property="og:title" content="A small unofficial website about the CSL, created by @LynnearSoftware@fedi.lynnesbian.space" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://lynnesbian.space/csl" />
|
||||
<meta property="og:image" content="https://lynnesbian.space/favicon.png" />
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
|
@ -30,7 +37,7 @@
|
|||
<br />
|
||||
</article>
|
||||
<footer>
|
||||
The source code of this website can be viewed <a href='https://git.lynnesbian.space/lynnesbian/CSL-site'>here</a>. It is available under the CSL.
|
||||
Site designed and created by <a href="https://fedi.lynnesbian.space/@LynnearSoftware">Lynne</a>. The source code of this website can be viewed <a href='https://git.lynnesbian.space/lynnesbian/CSL-site'>here</a>. It is available under the CSL.
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
17
style.css
17
style.css
|
@ -4,6 +4,7 @@ body {
|
|||
background-color: #eee;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #777;
|
||||
text-decoration-style: dotted;
|
||||
|
@ -11,6 +12,7 @@ a {
|
|||
a:hover {
|
||||
text-decoration-style: solid;
|
||||
}
|
||||
|
||||
article, footer {
|
||||
width: 50%;
|
||||
max-width: 1000px;
|
||||
|
@ -18,15 +20,10 @@ article, footer {
|
|||
margin: 0 auto;
|
||||
line-height: 1.4em;
|
||||
}
|
||||
@media only screen and (max-width:550px){
|
||||
article, footer {
|
||||
min-width:0;
|
||||
width:100%;
|
||||
}
|
||||
}
|
||||
footer {
|
||||
color: #777;
|
||||
}
|
||||
|
||||
h1, h2 {
|
||||
font-weight: 200;
|
||||
font-family: serif;
|
||||
|
@ -35,6 +32,7 @@ h1 {
|
|||
text-align: center;
|
||||
font-size: 3em;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
@ -44,3 +42,10 @@ ul.compact {
|
|||
ul li {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
@media only screen and (max-width:550px){
|
||||
article, footer {
|
||||
min-width:0;
|
||||
width:100%;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue