-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (68 loc) · 1.3 KB
/
Copy pathstyle.css
File metadata and controls
68 lines (68 loc) · 1.3 KB
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
body {
font-family: Arial, sans-serif;
background: #111;
color: #fff;
padding: 20px;
}
h1{
text-align:center;
}
h2 {
color: #00ffcc;
}
.tool {
background: #1e1e1e;
border: 1px solid #333;
padding: 20px;
margin-bottom: 30px;
border-radius: 10px;
}
label {
display: block;
margin-top: 10px;
}
input, select, textarea {
width: 97%;
padding: 10px;
margin-top: 5px;
background: #222;
color: #fff;
border: 1px solid #555;
border-radius: 5px;
}
button {
margin-top: 10px;
padding: 10px 20px;
background: #00ffcc;
border: none;
color: #000;
font-weight: bold;
cursor: pointer;
border-radius: 5px;
}
pre {
background: #222;
padding: 10px;
margin-top: 10px;
border-radius: 5px;
white-space: pre-wrap;
word-wrap: break-word;
}
.light {
background: #f5f5f5;
color: #111;
}
.light .tool {
background: #fff;
color: #000;
border-color: #ccc;
}
.light input, .light select, .light textarea {
background: #eee;
color: #000;
border-color: #ccc;
}
.light pre {
background: #ddd;
color: #000;
}