generated from adobecom/milo-college
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsusi-light.css
145 lines (124 loc) · 2.65 KB
/
susi-light.css
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
/* preserving modal space for ux */
.dialog-modal:has(.susi-light) {
width: 360px;
min-height: 462px;
}
.susi-light {
display: flex;
align-items: center;
justify-content: center;
}
.susi-tabs {
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
.susi-tabs .express-logo {
width: unset;
height: 24px;
padding-top: 32px;
}
.susi-tabs .title {
font-size: var(--heading-font-size-s);
line-height: 28.6px;
font-weight: 900;
padding-top: 12px;
text-align: center;
}
.susi-tabs [role='tablist'] {
background-color: #e6e6e6;
border-radius: 8px;
display: flex;
gap: 4px;
padding: 4px;
margin-top: 16px;
box-shadow: 0px 2px 8px 0px #00000029;
}
.susi-tabs [role='tablist']:has(:first-child:last-child) {
display: none;
}
.susi-tabs [role='tab'] {
background-color: #e6e6e6;
color: #222222;
border: initial;
font-family: var(--body-font-family);
font-size: var(--body-font-size-xs);
font-weight: 700;
padding: 8px 12px 10px;
line-height: 130%;
cursor: pointer;
}
.susi-tabs [role='tab'][aria-selected='true'] {
background-color: var(--color-white);
border-radius: 6px;
}
.susi-tabs [role='tabpanel'] {
width: 400px;
max-width: 95vw;
}
.susi-tabs [role='tabpanel'].hide {
display: none;
}
/* reduce CLS */
.susi-tabs [role='tabpanel'].standard .susi-wrapper {
min-height: 457.5px;
}
.susi-tabs [role='tabpanel'].edu-express .susi-wrapper {
min-height: 366.5px;
}
.susi-tabs .footer {
font-size: var(--body-font-size-s);
text-align: center;
padding: 16px 0;
font-weight: 700;
color: #292929;
line-height: 20.8px;
}
.susi-tabs .footer a {
text-decoration: underline;
color: initial;
font-weight: 500;
}
.susi-tabs .footer.susi-banner {
background-color: #f3f3f3;
}
.susi-tabs .footer.susi-bubbles h2 {
font-size: var(--body-font-size-l);
font-weight: 700;
}
.susi-tabs .footer .susi-bubble-container {
display: flex;
gap: 12px;
justify-content: center;
padding-top: 8px;
}
.susi-tabs .footer .susi-bubble {
font-size: var(--body-font-size-s);
background-color: #f3f3f3;
display: flex;
flex-direction: column;
padding: 12px 24px;
border-radius: 8px;
margin: 0;
}
/* ax-login-page section metadata styles */
.section.ax-login-page .susi-tabs {
background-color: var(--color-white);
border-radius: 16px;
}
.section.ax-login-page .susi-light {
padding-bottom: 32px;
}
.section.ax-login-page .susi-tabs .footer {
border-radius: 8px;
}
@media (min-width: 768px) {
.section.ax-login-page .susi-light {
position: absolute;
padding-top: 30px;
}
.section.ax-login-page .susi-tabs .footer {
border-radius: 0 0 16px 16px;
}
}