init
This commit is contained in:
parent
97ac70d00c
commit
71bc48ab5f
32
css/styles.css
Normal file
32
css/styles.css
Normal file
@ -0,0 +1,32 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.red {
|
||||
color: #e63946;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #f1faee;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
font-family: 'Source Code Pro', monospace;
|
||||
}
|
||||
.content{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.udalost:hover {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
.udalost {
|
||||
color: black;
|
||||
}
|
20
index.html
Normal file
20
index.html
Normal file
@ -0,0 +1,20 @@
|
||||
<!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>PKM Ples</title>
|
||||
<link rel="stylesheet" href="/css/styles.css" />
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap" rel="stylesheet" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="content">
|
||||
<p>PKM PARTY PLES</p>
|
||||
<p class="red">KC Střelnice, 7. 1. 2023</p>
|
||||
<a href="https://www.facebook.com/events/616074790100388" class="udalost">odkaz na událost</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user