Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrodmillman committed Nov 15, 2023
1 parent 246a9cf commit 4386b19
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 45 deletions.
15 changes: 2 additions & 13 deletions assets/css/casestudies.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@
padding: 30px;
}

.casestudies a:hover {
text-decoration: none;
color:black
}

.casestudies-title {
display: flex;
justify-content: center;
Expand All @@ -28,10 +23,6 @@
border-radius: 3px;
}

.casestudies a {
color: var(--colorPrimaryDark) !important;
}

.casestudies-box-title {
margin: 15px;
font-size: 16px;
Expand All @@ -58,11 +49,10 @@

.casestudies-underline {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
/* Black, with 10% opacity */
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
border: .02em solid var(--pst-color-border);
box-shadow: 0 .2rem .5rem var(--pst-color-shadow),0 0 .0625rem var(--pst-color-shadow);
position: relative;
overflow: hidden;
}
Expand All @@ -74,7 +64,6 @@
left: 0;
right: 100%;
bottom: 0;
background: var(--colorPrimaryDark);
height: 4px;
-webkit-transition-property: right;
transition-property: right;
Expand Down
11 changes: 7 additions & 4 deletions assets/css/shell.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
.hero-right {
display: flex;
flex-direction: column;
/* Black, with 10% opacity */
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
background: rgb(238, 238, 238);
padding: 15px;
background: var(--pst-color-surface);
}

.numpy-shell-canvas {
Expand All @@ -24,7 +22,7 @@

.numpy-shell {
flex: 2;
padding: 0 15px;
border: 1px solid var(--pst-color-border);
}

.shell-title-container {
Expand All @@ -48,9 +46,14 @@
}

.shell-lesson .highlight pre {
background-color: var(--pst-gray-800);
height: 100%;
}

.shell-lesson .highlight pre code{
color: #f3c7ee;
}

.shell-lesson > p {
margin: 2px 0 2px 0;
}
Expand Down
43 changes: 15 additions & 28 deletions assets/css/tabs.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
.uikit-tab-wrapper-mobile {
display: flex;
flex-direction: row;
[role="tablist"] {
justify-content: center;
}

blockquote footer::before {
content: "— ";
}

table td:not([align]), table th:not([align]) {
text-align: inherit;
}

table td, table th {
vertical-align: top;
}

.tabs-section {
Expand All @@ -26,25 +37,6 @@
margin: 15px auto;
}

.uk-tab > li {
padding: 0 10px;
}

.uk-nav > li > a {
height: 35px;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 1.5px;
font-weight: 500;
color: rgb(108, 122, 137);
}

#tabs-content > li {
width: 90vw;
max-width: 900px;
margin: 50px auto;
}

@media only screen and (max-width: 1200px) {
.tabs-section {
margin: 30px 10px;
Expand Down Expand Up @@ -112,10 +104,6 @@ td.bold-text {
min-width: 120px;
}

.scientific-domains td.bold-text {
color: var(--colorPrimaryDark);
}

img.cell-layout {
border-radius: 10px;
width: 50px;
Expand All @@ -139,7 +127,6 @@ td.full-center-text {
td.lastrow-center-text {
text-align: center;
line-height: 35%;
border-bottom: 1px solid rgb(255, 255, 255);
}

/* Array Libraries */
Expand All @@ -151,4 +138,4 @@ img.first-column-layout {

td.left-text {
vertical-align: middle;
}
}

0 comments on commit 4386b19

Please sign in to comment.