-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
134 lines (123 loc) · 2.98 KB
/
style.css
File metadata and controls
134 lines (123 loc) · 2.98 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
/* ScrapeGraphAI brand palette
* Black C64 #242424
* White OS #EFEFEF
* Strong Lilac #AC6DFF
* System Grey #928D97
*/
.sgai-cta {
display: block;
box-sizing: border-box;
width: 100%;
max-width: min(260px, 100%);
margin-top: 24px;
padding: 14px;
border-radius: 12px;
border: 1px solid rgba(172, 109, 255, 0.28);
background:
radial-gradient(120% 80% at 0% 0%, rgba(172, 109, 255, 0.16) 0%, rgba(172, 109, 255, 0) 55%),
#242424;
color: #EFEFEF;
font-family: inherit;
line-height: 1.45;
box-shadow: 0 10px 30px -18px rgba(172, 109, 255, 0.55);
overflow: hidden;
overflow-wrap: anywhere;
word-break: break-word;
hyphens: auto;
min-width: 0;
}
.sgai-cta__brand {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 10px;
font-size: 11.5px;
font-weight: 600;
letter-spacing: 0.01em;
color: #AC6DFF;
min-width: 0;
overflow-wrap: anywhere;
}
.sgai-cta__brand-logo {
width: 16px;
height: 16px;
flex: 0 0 auto;
display: inline-block;
object-fit: contain;
background: transparent;
border-radius: 0;
}
.sgai-cta__title {
font-size: 15px;
font-weight: 700;
line-height: 1.25;
margin: 0 0 6px 0;
color: #EFEFEF;
letter-spacing: -0.01em;
overflow-wrap: anywhere;
}
.sgai-cta__desc {
font-size: 12px;
line-height: 1.4;
color: #928D97;
margin: 0 0 12px 0;
overflow-wrap: anywhere;
}
.sgai-cta__desc strong {
color: #EFEFEF;
font-weight: 600;
}
.sgai-cta__btn {
display: block !important;
width: 100%;
box-sizing: border-box;
text-align: center;
padding: 8px 10px;
border-radius: 8px;
font-size: 12px;
font-weight: 600;
text-decoration: none !important;
white-space: normal;
overflow-wrap: anywhere;
word-break: break-word;
transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}
.sgai-cta__btn:hover {
opacity: 0.92;
transform: translateY(-1px);
}
.sgai-cta__btn--primary {
background: #AC6DFF;
color: #EFEFEF !important;
margin: 0 0 8px 0;
box-shadow: 0 4px 14px -6px rgba(172, 109, 255, 0.6);
}
.sgai-cta__btn--secondary {
background: rgba(239, 239, 239, 0.04);
border: 1px solid rgba(239, 239, 239, 0.12);
color: #EFEFEF !important;
margin: 0;
}
.sgai-cta__btn--secondary:hover {
background: rgba(239, 239, 239, 0.08);
}
html:not(.dark) .sgai-cta {
background:
radial-gradient(120% 80% at 0% 0%, rgba(172, 109, 255, 0.10) 0%, rgba(172, 109, 255, 0) 55%),
#EFEFEF;
border-color: rgba(172, 109, 255, 0.32);
color: #242424;
box-shadow: 0 8px 24px -16px rgba(172, 109, 255, 0.35);
}
html:not(.dark) .sgai-cta__title { color: #242424; }
html:not(.dark) .sgai-cta__desc { color: #928D97; }
html:not(.dark) .sgai-cta__desc strong { color: #242424; }
html:not(.dark) .sgai-cta__brand { color: #7A3FE4; }
html:not(.dark) .sgai-cta__btn--secondary {
background: rgba(36, 36, 36, 0.04);
border-color: rgba(36, 36, 36, 0.12);
color: #242424 !important;
}
html:not(.dark) .sgai-cta__btn--secondary:hover {
background: rgba(36, 36, 36, 0.08);
}