commit f03e1c50ec2d51f6994b0d8d93156d47b7141a46 Author: Chicory Date: Sat Jul 13 18:34:11 2024 +0300 upload diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..be1363e --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ + MIT License + +Copyright (c) 2021 chicory@fossee.net + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..84527d6 --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +## Info +CSS template of terminal window. I have no idea how you can use it. +But I need it for my homepage & can't find it. I know i'm idiot. + +## Screenshot +![CSS temlate screenshot](./screenshot.png) diff --git a/index.html b/index.html new file mode 100644 index 0000000..1463d02 --- /dev/null +++ b/index.html @@ -0,0 +1,25 @@ + + + + + + + + css-terminal + + +
+
+
css-terminal
+
+
+
+
+
+ CSS template of terminal window.
+ I have no idea how you can use it. ¯\_(ツ)_/¯
+ user@localhost:~$ _
+
+
+ + diff --git a/pub/main.css b/pub/main.css new file mode 100644 index 0000000..91b427e --- /dev/null +++ b/pub/main.css @@ -0,0 +1,80 @@ +* { + padding: 0; + margin: 0; +} +@font-face { + font-family: "RobotoMono"; + src: url("RobotoMono-Light.ttf") format("woff"); + } + +body { + font-family: RobotoMono, monospace; + font-size: 14px; + color: #c8cfd8; + background: #343944; + margin: auto; + padding-top: 60px; + line-height: 1.3em; +} +a { + color: #5294e2; +} +b{ + color: #6a9e41; +} +.window { + background: #404552; + box-shadow: 0 0 10px rgba(0,0,0,0.5); + border-radius: 5px; + border: 2px solid #2e333f; + width: 480px; + margin: auto; + +} +.window_header { + background: #2e333f; + color: #c8cfd8; + padding: 7px; + +} +.window_title { + display: inline-block; +} +.window_minimize_button, .window_maximize_button, .window_close_button { + border-radius: 7px; + width: 12px; + height: 12px; + display: inline-block; + float: right; + margin-left: 6px; +} +.window_minimize_button { + background: #2cc640; + border: 1px solid #51a75c; + +} +.window_maximize_button { + background: #fdbf2e; + border: 1px solid #d6a839; +} +.window_close_button { + background: #fe6256; + border: 1px solid #ca5f59; +} +.window_content { + padding: 7px; +} +.blink { + animation: blinking 1s infinite; +} +@keyframes blinking { + 0% { clear: both; } + 50%{ color: transparent; } +} + +@media screen and (max-width: 800px) { + body { + padding: 15px; + margin-top: 15px; + } +} \ No newline at end of file diff --git a/screenshot.png b/screenshot.png new file mode 100644 index 0000000..256078b Binary files /dev/null and b/screenshot.png differ