summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bracket.html2
-rw-r--r--style.css16
2 files changed, 14 insertions, 4 deletions
diff --git a/bracket.html b/bracket.html
index cc08170..f176866 100644
--- a/bracket.html
+++ b/bracket.html
@@ -80,7 +80,7 @@
<p>2 ...</p>
</div>
- <br class="spacer"/>
+ <div class="spacer hline"></div>
<!-- elimiatory games -->
<div id="Q1" class="quarter shadow">
diff --git a/style.css b/style.css
index 15aa005..c4a6077 100644
--- a/style.css
+++ b/style.css
@@ -178,6 +178,7 @@ tr:nth-child(even) {
float: left;
padding: 1em;
margin: 35px;
+ margin-bottom: 7ex;
border: thin solid;
width: 180px;
height: 130px;
@@ -202,8 +203,7 @@ tr:nth-child(even) {
.quarter {
float: left;
padding: 1em;
- margin: 15px;
- margin-top: 2em;
+ margin: 7ex 15px .75em;
border: thin solid;
border-radius: .75em;
width: 220px;
@@ -213,6 +213,8 @@ tr:nth-child(even) {
.semi {
float: left;
+ margin-top: 2em;
+ margin-bottom: .75em;
padding: 1em;
border: thin solid;
border-radius: .75em;
@@ -230,6 +232,7 @@ tr:nth-child(even) {
padding: 1em;
margin-left: 430px;
margin-top: 2em;
+ margin-bottom: 3em;
border: thin solid;
border-radius: .75em;
width: 220px;
@@ -237,7 +240,6 @@ tr:nth-child(even) {
background-color: #FF58F7
}
-
.readable {
margin-left: auto;
margin-right: auto;
@@ -304,3 +306,11 @@ td.team-name {
.spacer {
clear: both;
}
+
+.hline {
+ border-top: thin solid #aaa;
+ margin: 0;
+ height: 0;
+ padding: 0;
+ width: 100%;
+}