Compare commits

..

No commits in common. "18d7cfba5a7897daa5b2ed74c2e22d8c4beb7dba" and "766cdaa003636a3c3e3b3ca65c9e13e6dca26df2" have entirely different histories.

2 changed files with 3 additions and 44 deletions

View file

@ -27,26 +27,8 @@
</nav> </nav>
<div class="container"> <div class="container">
<aside class="left-sidebar"> <aside class="left-sidebar">
<table border="1"> <table>
<thead> SCORE
<th>Name</th>
<th>Score</th>
</thead>
<tbody id="scoreTable">
<tr>
<td>
Axel
</td>
<td>1</td>
</tr>
<tr>
<td>
Ronan
</td>
<td>2</td>
</tr>
</tbody>
</table> </table>
</aside> </aside>
<main> <main>

View file

@ -29,7 +29,7 @@ main {
aside { aside {
margin: 0 auto; margin: 0 auto;
float: left; float: left;
width: 20rem; width: 10rem;
justify-content: space-between; justify-content: space-between;
flex-direction: column; flex-direction: column;
} }
@ -73,29 +73,6 @@ footer p:last-child {
font-weight: bolder; font-weight: bolder;
} }
table {
border-collapse: collapse;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
width:100%;
}
thead {
width:100%;
background:#000;
padding:(12px * 1.5) 0;
color:wheat;
}
tr {
text-align: center;
width:100%;
padding:(12px * 1.5) 0;
}
tr:nth-of-type(even) {
background:lightgray;
}
.text-bubble { .text-bubble {
position: relative; position: relative;
margin: auto; margin: auto;