-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (87 loc) · 1.57 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
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
body {
background-color: #292929;
font-family: sans-serif;
}
.container {
width: 500px;
margin: 0 auto;
background-color: #292929;
padding: 20px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
border: 1px solid #3f3f3f;
}
.input {
margin-bottom: 20px;
}
.input input {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
outline: none;
box-sizing: border-box;
}
.input button {
padding: 10px;
border: none;
border-radius: 5px;
color: #fff;
cursor: pointer;
outline: none;
}
.output textarea {
width: 100%;
padding: 10px;
border: 1px solid #555555;
border-radius: 5px;
outline: none;
box-sizing: border-box;
resize: none;
height: 200px;
}
#result {
background-color: #292929;
color: #ffffff;
}
#result:focus {
outline: none;
}
#result::-webkit-input-placeholder {
color: #ccc;
}
#result::-moz-placeholder {
color: #ccc;
}
#result:-ms-input-placeholder {
color: #ccc;
}
#result:-moz-placeholder {
color: #ccc;
}
#prompt::-webkit-input-placeholder {
color: #ccc;
}
#prompt::-moz-placeholder {
color: #ccc;
}
#prompt:-ms-input-placeholder {
color: #ccc;
}
#prompt:-moz-placeholder {
color: #ccc;
}
#prompt:focus {
outline: none;
}
#generate:hover {
background-color: #0097a7;
}
#generate:active {
background-color: #00838f;
}
#prompt {
background-color: #3b3b3b;
}
#prompt, #code {
color: #ffffff;
}