Compare commits

..

No commits in common. "1f204b581b112568c643abc75b98ab5d5dcb7e47" and "d8024fdc02b4298f8f8dbc7a33c9735c9854adfd" have entirely different histories.

2 changed files with 8 additions and 20 deletions

View file

@ -1,13 +1,6 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en_GB"> <html lang="en">
<head> <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 charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="style.css">
@ -37,7 +30,7 @@
<br /> <br />
</article> </article>
<footer> <footer>
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. 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> </footer>
</body> </body>
</html> </html>

View file

@ -4,7 +4,6 @@ body {
background-color: #eee; background-color: #eee;
font-size: 1.1em; font-size: 1.1em;
} }
a { a {
color: #777; color: #777;
text-decoration-style: dotted; text-decoration-style: dotted;
@ -12,7 +11,6 @@ a {
a:hover { a:hover {
text-decoration-style: solid; text-decoration-style: solid;
} }
article, footer { article, footer {
width: 50%; width: 50%;
max-width: 1000px; max-width: 1000px;
@ -20,10 +18,15 @@ article, footer {
margin: 0 auto; margin: 0 auto;
line-height: 1.4em; line-height: 1.4em;
} }
@media only screen and (max-width:550px){
article, footer {
min-width:0;
width:100%;
}
}
footer { footer {
color: #777; color: #777;
} }
h1, h2 { h1, h2 {
font-weight: 200; font-weight: 200;
font-family: serif; font-family: serif;
@ -32,7 +35,6 @@ h1 {
text-align: center; text-align: center;
font-size: 3em; font-size: 3em;
} }
ul { ul {
list-style-type: none; list-style-type: none;
} }
@ -42,10 +44,3 @@ ul.compact {
ul li { ul li {
margin-top: 5px; margin-top: 5px;
} }
@media only screen and (max-width:550px){
article, footer {
min-width:0;
width:100%;
}
}