-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (94 loc) · 1.77 KB
/
style.css
File metadata and controls
123 lines (94 loc) · 1.77 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
body, html {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: 'Inconsolata', monospace;
box-sizing: border-box;
}
body {
background: #000000;
color: #FFFFFF;
padding: 32px 16px;
display: flex;
flex-direction: column;
max-width: 820px;
}
a {
color: #03d3fc;
}
#terminal {
height: 100%;
overflow-y: auto;
}
.response-container {
display: table;
position: relative;
min-height: 17px;
margin-bottom: 32px;
}
.response-container.user {
margin-left: 16px;
opacity: .9;
}
.response-container.user::before {
content: '>';
position: absolute;
left: -16px;
top: 0;
bottom: 0;
margin: auto;
}
.response {
float: left;
letter-spacing: 0px;
}
.response-container.typing {
opacity: .7;
}
.response-container.typing > .response::after {
content: '';
display: inline-block;
top: 0;
bottom: 0;
right: -14px;
margin: auto;
width: 8px;
height: 12px;
margin-left: 3px;
background: #FFFFFF;
animation: .8s carat infinite;
}
@keyframes carat {
0% {
opacity: 1;
}
49% {
opacity: 1;
}
50% {
opacity: 0;
}
99% {
opacity: 0;
}
}
#buttons button {
display: block;
font-family: inherit;
background: transparent;
outline: none;
color: inherit;
border: #FFFFFF solid 1px;
font-size: 14px;
font-weight: 600;
padding: 12px 2px;
margin: 8px auto;
width: 100%;
max-width: 650px;
min-width: 250px;
}
#buttons button:hover {
cursor: pointer;
background: rgba(255, 255, 255, .05);
}