Upload
This commit is contained in:
commit
2de341a01b
6
README.md
Normal file
6
README.md
Normal file
@ -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
|
||||

|
25
index.html
Normal file
25
index.html
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" type="text/css" href="pub/main.css">
|
||||
<title>css-terminal</title>
|
||||
</head>
|
||||
<body>
|
||||
<div class="window">
|
||||
<div class="window_header">
|
||||
<div class="window_title">css-terminal</div>
|
||||
<div class="window_close_button"></div>
|
||||
<div class="window_maximize_button"></div>
|
||||
<div class="window_minimize_button"></div>
|
||||
</div>
|
||||
<div class="window_content">
|
||||
CSS template of terminal window. <br>
|
||||
I have no idea how you can use it. ¯\_(ツ)_/¯<br>
|
||||
<b>user@localhost:~$</b> <span class="blink">_</span><br>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
80
pub/main.css
Normal file
80
pub/main.css
Normal file
@ -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;
|
||||
}
|
||||
}
|
BIN
screenshot.png
Normal file
BIN
screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
Loading…
Reference in New Issue
Block a user