-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
112 lines (107 loc) · 1.68 KB
/
app.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
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
body {
width: 350px;
height: auto;
background-color: #f7f7f7;
}
header {
margin: 0 auto;
width: 300px;
text-align: center;
margin-bottom: 20px;
}
h4,h5{
text-align: left;
}
section .content{
width: 100%;
height: 380px;
float: left;
position: relative;
margin: 0 auto;
}
#options{
width: 100%;
height: auto;
float: left;
padding: 5px;
margin-bottom: 10px;
}
#optbt{
margin-bottom: 10px;
cursor: pointer;
}
#savetobox{
width: 100%;
height: 30px;
padding: 5px;
float: left;
}
#textosave{
float: left;
}
#textbox{
width: 100%;
float: left;
}
#codepad{
width: 94%;
height: 180px;
margin: 0 auto;
border: 1px solid #cccccc;
border-radius: 10px;
}
.btn-classic{
padding: 5px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 11px;
}
#response{
width: 40px;
height: 25px;
margin-top: 5px;
float: left;
}
/* New Styles */
input[type="text"],
textarea {
width: 70%;
border: 1px solid #ccc;
background: #FFF;
margin: 0 0 5px;
padding: 10px;
border-radius: 10px;
}
input[type="text"]:hover,
textarea:hover {
-webkit-transition: border-color 0.3s ease-in-out;
-moz-transition: border-color 0.3s ease-in-out;
transition: border-color 0.3s ease-in-out;
border: 1px solid #aaa;
}
input:focus,
textarea:focus,
button:focus{
outline: 0;
border: 1px solid #aaa;
}
textarea {
height: 192px;
max-width: 100%;
resize: none;
}
::-webkit-scrollbar {
width: 20px;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
background-color: #d6dee1;
border-radius: 20px;
border: 6px solid transparent;
background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
background-color: #a8bbbf;
}