-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
66 lines (57 loc) · 1.33 KB
/
style.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
* {
padding: 0px;
margin: 0px;
background: rgb(0, 0, 0);
}
/* This project is originally made by me(N Paul). My github profile https://github.com/nirmalpaul383/
My youtube page https://www.youtube.com/channel/UCY6JY8bTlR7hZEvhy6Pldxg/ .This is an open source program .
You are welcomed to modify it...If you want to support me please give a like to our facebook page: https://facebook.com/a.new.way.Technical/ */
#divForHoldingLayout {
display: block;
width: 96vw;
height: 97vh;
margin-left: 2vw;
margin-top: 1vh;
}
#consoleOutputDisplay {
display: block;
resize: none;
width: 100%;
height: 20%;
background: rgb(0, 0, 0);
border: 1px solid rgb(0, 0, 0);
color: red;
}
#consoleOutputDisplay:focus {
outline: none;
}
#consoleInputDisplay {
display: block;
resize: none;
width: 100%;
height: 80%;
background: rgb(0, 0, 0);
border: 1px solid rgb(0, 0, 0);
color: rgb(9, 255, 0);
}
#consoleInputDisplay:focus {
outline: none;
}
#acceptButton {
display: block;
position: fixed;
top: 80vh;
right: 1vw;
border-radius: 35%;
background: rgb(19, 221, 70);
width: 10vw;
height: 10vw;
}
#acceptButton:hover {
background: rgb(8, 195, 228);
}
#acceptButton:active {
background: rgb(10, 88, 233);
width: 9vw;
height: 9vw;
}