PluginProbe
WPTerm / 1.3
WPTerm v1.3
1.3 trunk 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2
wpterm / wpterm.css

wpterm.css in WPTerm 1.3, at wpterm.css

42 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*
2 +=====================================================================+
3 | __ ______ _____ |
4 | \ \ / / _ \_ _|__ _ __ _ __ ___ |
5 | \ \ /\ / /| |_) || |/ _ \ '__| '_ ` _ \ |
6 | \ V V / | __/ | | __/ | | | | | | | |
7 | \_/\_/ |_| |_|\___|_| |_| |_| |_| |
8 | |
9 | (c) Jerome Bruandet ~ https://nintechnet.com/ |
10 +=====================================================================+
11 */
12 .terminal {
13 width: 100%;
14 height: 360px;
15 line-height: 1.4;
16 padding: 4px 6px 1px;
17 resize:vertical;
18 }
19 #terminal.error, #visual-bell.error {
20 -moz-animation: flash 0.1s ease-out; -moz-animation-iteration-count: 2;
21 -webkit-animation: flash 0.1s ease-out; -webkit-animation-iteration-count: 2;
22 -ms-animation: flash 0.1s ease-out; -ms-animation-iteration-count: 2;
23
24 }
25 @-webkit-keyframes flash {
26 0% { border-color: none; }
27 50% { outline: none; border-color: red; box-shadow: 0 0 10px red; }
28 100% { border-color: none; }
29 }
30 @-moz-keyframes flash {
31 0% { border-color: none; }
32 50% { outline: none; border-color: red; box-shadow: 0 0 10px red; }
33 100% { border-color: none; }
34 }
35 @-ms-keyframes flash {
36 0% { border-color: none; }
37 50% { outline: none; border-color: red; box-shadow: 0 0 10px red; }
38 100% { border-color: none; }
39 }
40 /* ================================================================== */
41 /* EOF */
42