clean up to latest copy for all pages excluding calculator

This commit is contained in:
Calvin Jhunjhnuwala
2020-08-21 17:16:50 -07:00
parent 6f049323f6
commit ea038d7b9d
42 changed files with 243 additions and 180 deletions

View File

@@ -122,6 +122,10 @@ td:nth-child(1) {
box-sizing: border-box;
justify-content: center;
align-items: center;
border-radius: 8px;
&-50 {
flex-basis: calc(50% - 30px);
}
}
@media (max-width: 768px) {
.square {

View File

@@ -58,6 +58,12 @@ a:hover {
.bold {
font-weight: bold;
}
.text-large {
font-size: 1.125rem;
}
.text-smallest {
font-size: 0.625rem;
}
/* Japanese language font override ------------------------------------------ */

View File

@@ -1,4 +1,10 @@
/* HEIGHT AND WIDTH HELPERS */
.h32 {
height: 32px;
}
.w32 {
width: 32px;
}
.h36 {
height: 36px;
}
@@ -8,6 +14,9 @@
.w40 {
width: 40px;
}
.w44 {
width: 44px;
}
.w48 {
width: 48px;
}
@@ -111,4 +120,7 @@
}
.ls-none {
list-style: none;
}
.no-wrap {
white-space: nowrap;
}

View File

@@ -53,6 +53,7 @@
}
}
/* COMPONENTS */
.border-green {
border: 1px solid $primary;
@@ -319,4 +320,14 @@
position: absolute;
left: 0;
top: 302px;
}
#page-uses-top {
}
#table-overview {
td:nth-child(1){
width: 40%;
}
}