-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
156 lines (130 loc) · 2.39 KB
/
styles.css
File metadata and controls
156 lines (130 loc) · 2.39 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
body {
font-family: Arial, sans-serif;
margin: 50px;
}
h1, h2, .btn, .instructions {
text-align: center;
}
textarea {
width: 100%;
height: 150px;
margin-bottom: 10px;
}
button {
margin-bottom: 20px;
text-align: center;
}
.instructions {
border: 1px solid #ccc;
padding: 10px;
margin-bottom: 20px;
position: relative;
}
.code-container {
display: flex;
justify-content: center;
align-items: center;
background-color: #f5f5f5;
padding: 5px;
border-radius: 5px;
}
.code-container code {
text-align: center;
}
.copy-button {
background: none;
border: none;
cursor: pointer;
font-size: 1.2em;
margin-top: 15px;
}
.tooltip {
position: absolute;
background-color: #333;
color: #fff;
padding: 5px 10px;
border-radius: 5px;
font-size: 0.9em;
transform: translate(-50%, -100%);
pointer-events: none;
}
.tooltip.show {
opacity: 1;
}
.diff-container {
display: flex;
}
.diff-column {
width: 50%;
padding: 10px;
border: 1px solid #ccc;
box-sizing: border-box;
}
.diff-column pre {
white-space: pre-wrap;
word-wrap: break-word;
}
.controller-title {
cursor: pointer;
display: flex;
align-items: center;
}
.toggle-icon {
margin-right: 10px;
}
.hidden {
display: none;
}
.updated {
background-color: #FFA500;
color: #333333;
}
.equal {
background-color: transparent;
}
.controller-content div {
margin-left: 20px;
}
.input-container {
display: flex;
flex-direction: column;
gap: 10px;
align-items: flex-start;
}
.clear-button {
padding: 5px 10px;
background-color: #ff4444;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
.clear-button:hover {
background-color: #cc0000;
}
.clear-all-button {
margin-left: 10px;
padding: 8px 16px;
background-color: #ff4444;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
.clear-all-button:hover {
background-color: #cc0000;
}
.btn button {
padding: 8px 16px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 1em;
}
.btn button:first-child {
background-color: #FFA500; /* Yellow-orange color for the Show Differences button */
color: white;
}
.btn button:first-child:hover {
background-color: #FF8C00; /* Darker yellow-orange on hover */
}