diff --git a/configs/config.json b/configs/config.json index ec722b0..c95ac7b 100644 --- a/configs/config.json +++ b/configs/config.json @@ -7,7 +7,7 @@ "interests": ["Artificial Intelligence", "Machine Learning", "LLMs", "GNU-Linux", "CLIs / TUIs", "Embedded Systems", "WASM"], - "langs": ["Rust", "Python", "C++", "Bash", "Dart"], + "langs": ["Rust", "Python", "C", "C++", "Bash", "Dart"], "experience": [ { diff --git a/index.html b/index.html index 02a4c50..3b0ad05 100644 --- a/index.html +++ b/index.html @@ -21,5 +21,25 @@ /> - + +
+ For the best experience, please use landscape mode or switch to a wider + screen. +
+ + + diff --git a/src/commands/texts.rs b/src/commands/texts.rs index 0c065f7..c5e0ea7 100644 --- a/src/commands/texts.rs +++ b/src/commands/texts.rs @@ -16,8 +16,8 @@ Hello, welcome to Termfolio. Type one of these comma history - View command history clear - Clear screen -You can use arrow keys to scroll through previous commands, -and also use Ctrl + l to clear the screen"#; +You can use arrow keys to scroll through history, +and also use Ctrl+L to clear the screen"#; pub const CREDITS: &str = r#" _____ ______________ _________ _____ _ _____ _____ |_ _| ___| ___ \ \/ || ___| _ | | |_ _| _ | @@ -40,7 +40,7 @@ Terminal style portfolio website. class="blu semibold">Github REST API * Pinned repos - berrysauce/pinned diff --git a/styles/styles.css b/styles/styles.css index 76ce8a5..b25d9ad 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -18,7 +18,7 @@ color: var(--white); text-underline-offset: 8px; text-decoration-thickness: 2px; - /* text-shadow: 0px 5px 10px currentColor; */ + /*text-shadow: 0px 3px 8px currentColor;*/ } input { @@ -31,7 +31,7 @@ input { form { display: inline-block; margin-bottom: 0px; - /* caret-shape: block; */ + caret-shape: block; caret-color: var(--green); font-weight: 500; } @@ -114,3 +114,17 @@ form { .blocks { font-size: 35px; } + +#orientation-warning { + display: none; + position: fixed; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.75); + color: white; + top: 0; + left: 0; + font-size: 1.2rem; + text-align: center; + padding-top: 30vh; +}