-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (63 loc) · 1.02 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
width: 468px;
border-radius: 17px;
/* height: 251px; */
overflow: auto;
background: #DDD;
color: #00EA1C;
}
body .mainCont{
border-radius: 10px;
font-family: 'Open Sans';
background: #000;
padding-bottom: 7px;
}
body .heading{
text-align: center;
height: auto;
padding: 2px;
}
div.box{
height: 256px;
}
#writer{
font-family: monospace;
font-size: 11px;
width: 470px;
line-height: 14px;
overflow: auto;
height: 212px;
position: fixed;
padding: 3px 0px 0px 10px;
margin-top: 42px;
}
input {
width: 96%;
position: fixed;
font-family: monospace;
margin-left: 2%;
margin-top: 3%;
border: 0;
outline: 0;
background: transparent;
border-bottom: 2px solid #DDDDDD;
padding: 0px 0px 6px 0px;
transition: all linear 0.5s;
color: #00EA1C;
}
input:focus{
border-bottom:2px solid #00EA1C;
}
::-webkit-scrollbar {
height: 13px;
width: 0px;
background: #000;
}
::-webkit-scrollbar-corner {
background: #000;
}