diff options
author | thinkpadmaster <a.scerba02@gmail.com> | 2023-11-11 17:30:03 -0500 |
---|---|---|
committer | Alex Scerba <alex@scerba.org> | 2024-10-29 13:19:59 -0400 |
commit | b07229df97287d4d6c85bde2b5e08083afe073b4 (patch) | |
tree | 4514219c1485a1ba838784a0e8822b7e88e13a5b /static/style.css | |
parent | c1bda6eba8cfb3d9176a09527b0049e23c4b30bb (diff) |
New style and add sketchbook post
Diffstat (limited to 'static/style.css')
-rw-r--r-- | static/style.css | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/static/style.css b/static/style.css index 2bf2994..80e14d9 100644 --- a/static/style.css +++ b/static/style.css @@ -83,8 +83,15 @@ header { }
h1 {
- font-size: 1.5rem;
+ font-size: 2.5rem;
color: rgb(190, 190, 190);
+ padding-left: 1rem;
+ border-left: 1rem solid rgb(59, 195, 219);
+ border-bottom: .12rem solid rgb(196, 196, 196);
+}
+
+b {
+ color:rgb(100, 100, 100);
}
.main-nav-position {
@@ -123,10 +130,19 @@ img { }
a {
- text-decoration: none;
color: black;
}
+header a, .projects a {
+ text-decoration: none;
+}
+
+.projects p {
+ margin-top: 0.2rem;
+ border-right: .5rem solid rgb(196, 196, 196);
+ border-top: .12rem solid rgb(196, 196, 196);
+}
+
.footer-logo {
filter: invert(100%);
height: 1rem;
@@ -152,6 +168,14 @@ footer * { color: white;
}
+blockquote {
+ font-style: italic;
+}
+
+.sketchbook > img:first-of-type {
+ display: none;
+}
+
@media screen and (min-width: 45rem) {
address {
display: flex;
|