-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
122 lines (103 loc) · 2.56 KB
/
Copy pathstyles.css
File metadata and controls
122 lines (103 loc) · 2.56 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
.quick-export-button,
.export-button {
font-size: 16px;
padding: 20px;
}
.metadata-section {
text-align: center;
margin-top: 20px;
padding: 15px;
border: 1px solid #ccc;
border-radius: 5px;
}
.metadata-section p {
margin: 5px 0;
font-size: 0.9em;
}
.help-text {
font-size: 12px;
border-bottom: none;
margin-top: 20px;
}
.root-notice {
font-size: 12px;
}
.section-button-section {
text-align: right;
margin-top: 50px;
}
.view-button-section {
display: flex;
justify-content: space-around;
margin-top: 20px;
}
.egv-choice-container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.egv-choice-header {
text-align: center;
margin-bottom: 10px;
}
.egv-choice-description {
text-align: center;
margin-bottom: 30px;
color: var(--text-muted);
}
.egv-cards-container {
display: flex;
gap: 30px;
justify-content: center;
flex-wrap: wrap;
}
.egv-choice-card {
background-color: var(--background-secondary);
border-radius: 10px;
padding: 25px;
min-width: 250px;
flex: 1;
display: flex;
flex-direction: column;
transition:
transform 0.2s,
box-shadow 0.2s;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
cursor: pointer;
max-width: 350px;
}
.egv-choice-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.egv-choice-card h3 {
margin-top: 15px;
margin-bottom: 10px;
text-align: center;
}
.egv-choice-card p {
flex-grow: 1;
color: var(--text-muted);
margin-bottom: 20px;
text-align: center;
}
.egv-card-icon {
height: 60px;
margin: 0 auto 15px;
background-size: contain;
background-position: center;
background-repeat: no-repeat;
width: 60px;
}
.single-parent-icon {
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="8" r="5"/><path d="M5 18c0-4 7-4 7-4v4"/><path d="M19 18c0-4-7-4-7-4v4"/></svg>');
}
.full-graph-icon {
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="5" cy="6" r="3"/><circle cx="19" cy="6" r="3"/><circle cx="5" cy="18" r="3"/><circle cx="19" cy="18" r="3"/><line x1="5" y1="9" x2="5" y2="15"/><line x1="19" y1="9" x2="19" y2="15"/><line x1="8" y1="6" x2="16" y2="6"/><line x1="8" y1="18" x2="16" y2="18"/><line x1="8" y1="6" x2="16" y2="18"/></svg>');
}
.egv-card-button-container {
text-align: center;
}
.egv-card-button-container button {
width: 100%;
}