-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditor.css
More file actions
60 lines (48 loc) · 1.15 KB
/
editor.css
File metadata and controls
60 lines (48 loc) · 1.15 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
/* ------------------------------ */
/* Page Layout */
/* ------------------------------ */
.editor-body {
background-color: #f4f7f4;
color: #1a1a1a;
font-family: "Inter", Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
/* ------------------------------ */
/* Redirect Box */
/* ------------------------------ */
.redirect-container {
background-color: #e8f7eb; /* soft turtle green */
padding: 40px 50px;
border-radius: 12px;
text-align: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
max-width: 500px;
}
/* ------------------------------ */
/* Text Styling */
/* ------------------------------ */
.redirect-title {
font-size: 1.8rem;
margin-bottom: 12px;
color: #1f7a3a; /* turtle green */
}
.redirect-text {
font-size: 1rem;
color: #2b4d2f;
}
/* ------------------------------ */
/* Link Styling */
/* ------------------------------ */
.redirect-link {
color: #1f7a3a;
font-weight: 600;
text-decoration: none;
}
.redirect-link:hover {
text-decoration: underline;
}