-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
96 lines (85 loc) · 2.78 KB
/
Copy pathapp.css
File metadata and controls
96 lines (85 loc) · 2.78 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
@import 'tailwindcss';
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source "../**/*.blade.php";
@source "../**/*.js";
@source "../**/*.vue";
@utility container {
margin-inline: auto;
padding-inline: 2rem;
}
@theme {
--font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
'Segoe UI Symbol', 'Noto Color Emoji';
}
/* Grid System */
.row {
display: grid;
grid-template-columns: repeat(12, 1fr);
gap: 1rem;
margin-bottom: 1rem; /* Add vertical spacing between rows */
}
.col-start-1 { grid-column-start: 1; }
.col-start-2 { grid-column-start: 2; }
.col-start-3 { grid-column-start: 3; }
.col-start-4 { grid-column-start: 4; }
.col-start-5 { grid-column-start: 5; }
.col-start-6 { grid-column-start: 6; }
.col-start-7 { grid-column-start: 7; }
.col-start-8 { grid-column-start: 8; }
.col-start-9 { grid-column-start: 9; }
.col-start-10 { grid-column-start: 10; }
.col-start-11 { grid-column-start: 11; }
.col-start-12 { grid-column-start: 12; }
.col-end-1 { grid-column-end: 1; }
.col-end-2 { grid-column-end: 2; }
.col-end-3 { grid-column-end: 3; }
.col-end-4 { grid-column-end: 4; }
.col-end-5 { grid-column-end: 5; }
.col-end-6 { grid-column-end: 6; }
.col-end-7 { grid-column-end: 7; }
.col-end-8 { grid-column-end: 8; }
.col-end-9 { grid-column-end: 9; }
.col-end-10 { grid-column-end: 10; }
.col-end-11 { grid-column-end: 11; }
.col-end-12 { grid-column-end: 12; }
.col-end-13 { grid-column-end: 13; }
.text-shadow {
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
/* DotCMS SDK Empty Container Styles - Include via helper or manually include below */
/*
To include SDK styles in your project, you can:
1. Add this to your Blade template: {!! $dotCmsHelpers->getEmptyContainerCSS() !!}
2. Or manually include the CSS from DotCmsHelper::getEmptyContainerCSS()
*/
/* Manual inclusion of SDK empty container styles: */
/* Empty Container Placeholder for UVE */
.empty-container-placeholder {
padding: 2rem;
border: 2px dashed #d1d5db;
border-radius: 0.5rem;
text-align: center;
color: #6b7280;
font-style: italic;
margin: 0;
background-color: #f9fafb;
transition: all 0.2s ease;
min-height: 4rem;
display: flex;
align-items: center;
justify-content: center;
}
.empty-container-placeholder:hover {
border-color: #9ca3af;
background-color: #f3f4f6;
}
/* UVE Ghost Contentlet - wrapper that UVE can detect but is visually transparent */
.uve-ghost-contentlet {
/* Make the wrapper transparent to UVE detection but maintain visual container */
display: block;
position: relative;
margin: 0;
padding: 0;
min-height: 6rem; /* Ensure adequate hover target for UVE */
}