-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathz.general.scss
41 lines (34 loc) · 896 Bytes
/
z.general.scss
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
// Use the @layer directive to tell Tailwind how to apply these styles with
// specificity. Available options are 'base', 'components' and 'utilties'.
// For more, see: https://tailwindcss.com/docs/functions-and-directives#layer
@layer components {
.hero-heading {
@apply text-4xl mb-10 text-white font-medium;
}
.instructions {
.sub-title {
@apply text-gray-900 pb-2 border-b-2 border-gray-400 mb-5 text-xl font-medium;
& + p {
@apply mb-3;
}
}
.code {
@apply block font-mono border rounded bg-gray-100 text-gray-700 px-4 py-5 leading-normal text-sm shadow;
&.pre {
@apply whitespace-pre;
}
em {
@apply opacity-75;
}
}
}
.social {
@apply block pt-6 text-gray-700;
a {
@apply text-blue-500 font-medium p-4;
&:hover {
@apply text-blue-700;
}
}
}
}