-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite.css
More file actions
101 lines (87 loc) · 1.82 KB
/
Copy pathsite.css
File metadata and controls
101 lines (87 loc) · 1.82 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
html, body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
html, body {
height: 100%;
overflow: hidden;
display: flex;
flex-direction: column;
}
.valid.modified:not([type=checkbox]) {
outline: 1px solid #26b050;
}
.invalid {
outline: 1px solid red;
}
.validation-message {
color: red;
}
.button-link {
text-decoration: unset;
}
#blazor-error-ui {
background: lightyellow;
bottom: 0;
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
display: none;
left: 0;
padding: 0.6rem 1.25rem 0.7rem 1.25rem;
position: fixed;
width: 100%;
z-index: 1000;
}
#blazor-error-ui .dismiss {
cursor: pointer;
position: absolute;
right: 0.75rem;
top: 0.5rem;
}
.title {
display: flex;
flex-direction: column;
gap: 0.5rem;
padding-bottom: 0.625rem;
}
.title.title-secondary {
padding-top: 0.313rem;
padding-bottom: 0;
color: var(--dxds-color-content-neutral-default-rest);
}
.title-header-text {
font-size: 2.5rem;
line-height: 3rem;
font-weight: 600;
letter-spacing: 0rem;
padding: 0.3125rem 0;
}
.title-content-text {
font-size: 1.75rem;
font-weight: 400;
line-height: 2.5rem;
letter-spacing: 0rem;
}
.main-content {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
}
.block-content {
width: 31.25rem;
height: auto;
display: flex;
flex-direction: column;
gap: 0.625rem;
max-width: 100%;
}
.icon {
width: var(--icon-width);
height: var(--icon-height);
background-color: currentcolor;
mask-position: center center;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-image: var(--icon-mask-image);
mask-image: var(--icon-mask-image);
}