-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (94 loc) · 2 KB
/
Copy pathstyle.css
File metadata and controls
106 lines (94 loc) · 2 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
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
body {
font-family: Arial, sans-serif;
background-color: #fff;
color: black;
background: url("./pattern.svg");
text-shadow: 0px -1px 0px #000, 0px 1px 0px #fff;
}
.container {
width: 80%;
margin: 0 auto;
}
form {
width: 100%;
padding: 20px;
border: 1px solid #ccc;
box-sizing: border-box;
}
.bg-color {
background-color: #fff;
}
label {
display: block;
margin-bottom: 10px;
}
input,
textarea,
select {
width: 100%;
padding: 12px;
box-sizing: border-box;
border: 1px solid #ccc;
margin-bottom: 20px;
}
button[type="submit"] {
background-color: #4caf50;
color: #fff;
padding: 12px 20px;
border: none;
cursor: pointer;
}
#response {
padding: 20px;
border: 1px solid #ccc;
overflow-y: auto; /* scrollbar will be added only when content exceeds the div's height */
overflow-x: auto; /* scrollbar will not be added when content exceeds the div's width */
}
#copyBtn {
position: relative;
top: -1;
right: -1;
}
body.dark-mode {
background-color: #171921;
color: #fff;
}
.code-block {
background-color: #f5f5f5; /* or a different color that you prefer */
padding: 10px;
border-radius: 3px;
font-family: monospace;
}
#toggle-mode-button:active {
background-color: #555;
color: #fff;
}
#toggle-mode-button {
background-color: #ccc; /* or a different color that you prefer */
color: #333; /* or a different color that you prefer */
padding: 10px 20px;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
#toggle-mode-button:hover {
background-color: #ddd; /* or a different color that you prefer */
}
#toggle-mode-button.dark-mode {
background-color: #333; /* or a different color that you prefer */
color: #fff; /* or a different color that you prefer */
}
#toggle-mode-button.dark-mode:hover {
background-color: #444; /* or a different color that you prefer */
}
#toggle-mode-button::before {
font-family: "Font Awesome 5 Free";
content: "\f186";
padding-right: 10px;
}
.black-text {
color: #171921;
}
.svg-objects * {
fill: red;
}