forked from drupal/cms-launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
129 lines (111 loc) · 2.14 KB
/
styles.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
html {
display: table;
width: 100%;
height: 100%;
margin: 0;
}
body {
font-family: "Inter", system-ui;
font-size: 100%;
font-weight: normal;
font-style: normal;
line-height: 1.5;
background-color: white;
padding-block: 0;
border-inline-start: 25px solid #CCEDF9;
display: table-cell;
@media (min-width: 48em) {
border-inline-start-width: 35px;
}
}
.cms-installer {
padding-block: 30px;
padding-inline: 33px;
min-block-size: 80%;
@media (min-width: 78em) {
padding-block: 60px;
padding-inline: 66px;
}
@media (min-height: 500px) {
display: grid;
grid-template-areas: "stack";
& > * {
grid-area: stack;
}
}
}
.cms-installer__header {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
align-self: start;
@media (min-height: 500px) {
margin-block-end: 2.5rem;
}
}
h1 {
margin-block: 0;
& img {
max-width: 40vw;
}
}
.cms-installer__wrapper {
display: flex;
place-items: center;
text-align: center;
}
.cms-installer__main {
inline-size: 100%;
max-inline-size: 780px;
min-block-size: 220px;
position: relative;
padding-top: 2rem;
}
.button {
all: revert;
display: inline-flex;
align-items: center;
flex-wrap: wrap;
border: solid 1px transparent;
font-family: inherit;
line-height: 1;
font-size: 1.125rem;
color: white;
background-color: rgb(5, 80, 230);
padding: 1rem;
border-radius: .5rem;
font-weight: 600;
box-shadow: none;
cursor: pointer;
padding-inline-end: 2.5rem;
background-image: url('./images/arrow-right.svg');
background-repeat: no-repeat;
background-position: center right 1rem;
&:hover {
background-color: #0444c4;
}
&:focus {
outline: 3px solid rgb(8, 113, 243);
outline-offset: 2px;
}
}
h2 {
font-size: 1.875rem;
font-weight: 600;
margin-block-start: 0;
line-height: 1.3;
}
p {
color: #545560;
margin-block-start: 0;
}
.cms-installer__loader {
background-image: url('./images/loading.svg');
background-repeat: no-repeat;
background-position: center;
block-size: 3rem;
inline-size: 3rem;
margin: auto;
padding-bottom: 2rem;
}