-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprompt.css
47 lines (46 loc) · 1017 Bytes
/
prompt.css
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
#promptContainer {
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
/* width: 100vw;
height: 100vh; */
background-color: #0005;
opacity: 0;
transition: 500ms linear opacity;
pointer-events: none;
z-index: 4;
}
#prompt {
position: fixed;
top: 50vh;
left: 50vw;
width: 50vw;
height: fit-content;
padding-left: 10px;
padding-right: 10px;
border: 4px solid white;
color: white;
/* background-color: lightgray; */
background-color: #333333;
text-align: center;
transform: translate(-50%, -100vh);
transition: 500ms ease transform;
}
#promptInput {
/* font-family: 'Courier New', Courier, monospace; */
font-family: "Source Code Pro", Courier, monospace;
font-weight: 600;
font-size: 20px;
display: inline-block;
width: 50%;
height: 20px;
background-color: #aaaaaa;
outline: none;
}
.promptButton {
width: 100px;
margin-top: 20px;
margin-bottom: 20px;
}