Colors
This commit is contained in:
parent
baae1f75a5
commit
88570d8df1
1 changed files with 14 additions and 3 deletions
|
@ -4,19 +4,29 @@
|
||||||
<script src="https://unpkg.com/htmx.org@1.9.5"></script>
|
<script src="https://unpkg.com/htmx.org@1.9.5"></script>
|
||||||
<style>
|
<style>
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Cantarell&display=swap');
|
@import url('https://fonts.googleapis.com/css2?family=Cantarell&display=swap');
|
||||||
* { font-family: Cantarell, serif }
|
* {
|
||||||
|
/* Some global vars for colors*/
|
||||||
|
--text: #0c0311;
|
||||||
|
--background: #fdfbfe;
|
||||||
|
--primary: #9b41d8;
|
||||||
|
--secondary: #d7b3ef;
|
||||||
|
--accent: #7924b2;
|
||||||
|
|
||||||
|
font-family: Cantarell, serif;
|
||||||
|
background: var(--background);
|
||||||
|
}
|
||||||
table {
|
table {
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
}
|
}
|
||||||
|
|
||||||
td, th {
|
td, th {
|
||||||
border: 1px solid #878787;
|
border: 1px solid var(--accent);
|
||||||
text-align: left;
|
text-align: left;
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr:nth-child(even) {
|
tr:nth-child(even) {
|
||||||
background-color: #dddddd;
|
background-color: var(--secondary);
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
@ -77,5 +87,6 @@
|
||||||
<p>And a fren: <a href="https://foxgirls.love/web">Erika</a></p>
|
<p>And a fren: <a href="https://foxgirls.love/web">Erika</a></p>
|
||||||
<hr>
|
<hr>
|
||||||
<p>Todo: Add proper styling</p>
|
<p>Todo: Add proper styling</p>
|
||||||
|
<p>Last updated: 18.09.2023: 11:33</p>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in a new issue