-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathlayout.css
More file actions
96 lines (79 loc) · 1.85 KB
/
Copy pathlayout.css
File metadata and controls
96 lines (79 loc) · 1.85 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
@layer components {
/*! purgecss start ignore */
.banner,
.banner-default,
.banner-with-tick,
.banner-default-with-tick {
@apply block relative p-gutterHalf mx-0 mt-gutter mb-gutterHalf clear-both text-left font-medium text-smaller border-4 border-solid border-green leading-tight text-green;
}
.banner:focus,
.banner-default-with-tick:focus {
@apply outline-yellow;
outline-style: solid;
outline-offset: 1px;
outline-width: 3px;
}
.banner-dangerous {
@apply border-red text-red mt-gutterHalf;
}
.banner-dangerous p {
@apply my-gutterHalf;
}
.banner-dangerous p:last-child {
@apply mb-0;
}
.banner-dangerous p:first-child {
@apply mt-0;
}
.banner-title {
@apply font-sans text-title border-none pl-0 mb-gutterHalf;
}
.banner-with-tick,
.banner-default-with-tick {
background-position: 15px 15px;
@apply bg-tick bg-no-repeat bg-[1em] py-gutterHalf px-gutterAndAHalf;
}
.banner-list-bullet {
@apply mb-0 font-normal;
}
.column-main .heading-large,
.column-main > .heading-medium {
@apply mx-0 mb-8 mt-gutterHalf break-words;
}
.column-main .heading-large.top-gutter-0,
.column-main > .heading-medium.top-gutter-0 {
@apply mt-0;
}
#content {
@apply pb-gutter outline-none;
}
@variant md {
#content {
padding-bottom: 90px;
}
}
/* This was previously the %site-width-container mixin */
#content,
.global-cookie-message p {
max-width: 960px;
@apply my-0 mx-gutterHalf;
}
@variant md {
#content,
.global-cookie-message p {
@apply mx-gutter;
}
}
@variant lg {
#content,
.global-cookie-message p {
@apply mx-auto;
}
}
/* Home page was built with different CSS - override */
#content.home-page-content {
max-width: none;
@apply mx-0 pb-0;
}
/*! purgecss end ignore */
}