Skip to content

Commit

Permalink
deploy: 175a0e8
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbenti committed Jan 20, 2025
0 parents commit db487d2
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
21 changes: 21 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./styles.css">

<title>Snoking to BenchApp - ICS Edition</title>
</head>

<body>
<main>
<ul class="team_list">
</ul>
</main>

</body>

</html>
69 changes: 69 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
/* Reset */
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}



/* Font */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Roboto:wght@500&display=swap');
body {
font-family: 'Cormorant Garamond', serif;
font-family: 'Roboto', sans-serif;
font-weight: 500;
font-size: 2rem;
}

main {
display: flex;
justify-content: center;
}

li {
margin: 1rem;
}

0 comments on commit db487d2

Please sign in to comment.