summaryrefslogtreecommitdiffstats
path: root/css/terminal-animation.css
blob: e2703769d7c9b13397c7f18b30bc77d2a73d58b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
.terminal-animation {
    position: relative;
    width: 700px;
    min-height: 300px;
    padding: 5px;
    margin: 1em 0px;

    font-family: courier, fixed;
    font-size: 13px;
    white-space: pre-wrap; 

    border: 1px solid gray;
    border-radius: 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    background: black;
    color: lightgray;
}

.terminal-animation-console {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 40px;

    padding: 5px;
    overflow: auto;
}

.terminal-animation-content {
}

.terminal-animation-caret {
    background: lightgray;
}

.terminal-animation-control {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 30px;

    padding: 5px;
    background: gray;
    color: black;
}

.terminal-animation-button {
    margin: 1px 2px;
    padding: 5px 10px;
    vertical-align: bottom;

    border: 1px solid white;
    border-radius: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    background: dimgray;
    color: white;
}

.terminal-animation-button:hover {
    background: lightgray;
    color: black;
}

.terminal-animation-input {
    font-weight: bold;
    color: white;
}

.terminal-animation-input:hover {
    background: #303233;
}

.terminal-animation-output:hover {
    background: #303233;
}