-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyleHomePage.css
More file actions
54 lines (54 loc) · 825 Bytes
/
Copy pathstyleHomePage.css
File metadata and controls
54 lines (54 loc) · 825 Bytes
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
#promptCont{
display: flex;
gap: 0%;
}
#title{
color:white;
margin-left: 2%;
font-size:20px;
}
#initBtn, #startBtn{
margin-left: 2%;
}
#output,#noteBox,#promptBox{
color:white;
border-radius: 5px;
background-color: rgb(40, 40, 40);
outline: none;
padding: 10px;
}
#promptBox{
flex:1;
color: #aaa;
height: 40px;
border-radius: 15px;
overflow-y: auto;
}
#startBtn{
margin-right: 1%;
height: 40px;
border-radius: 15px;
flex-shrink: 0;
background-color: rgb(60,60,60);
}
#output{
display: flex;
white-space: pre-wrap;
height:60vh;
flex:1;
overflow-y: auto;
}
#output ul {
margin: 0;
padding-left: 20px;
}
#output li {
margin-bottom: 4px;
}
#notes{
display: none;
}
#noteBox{
height:60vh;
width:35vw;
}