-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind-build.typography.css
116 lines (90 loc) · 2.12 KB
/
tailwind-build.typography.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
.raa-link {
@apply tw-inline-block tw-text-raa-orange tw-underline tw-cursor-pointer;
transition: text-decoration 0.4s;
line-height: 1.375rem;
text-decoration-color: transparent;
}
.raa-link:focus {
@apply tw-underline tw-bg-raa-orange tw-text-raa-white tw-outline-transparent;
}
.raa-link:hover {
@apply tw-underline tw-text-raa-orange-hover tw-bg-transparent tw-decoration-raa-orange;
}
.raa-link:active {
@apply tw-text-raa-orange-active tw-border-raa-orange-active;
}
/*Tar bort underline under ikon som ligger i länkar och centrerar den*/
.raa-link .raa-icon {
@apply tw-inline-block tw-relative;
top: 0.1em;
}
.raa-label {
@apply tw-flex tw-font-semibold tw-my-1 tw-mx-0;
}
.raa-label.select {
@apply tw-relative tw-font-normal tw-inline-flex tw-items-center;
}
.raa-menu-text {
@apply tw-text-size-1 tw-leading-1.25 tw-uppercase tw-text-raa-orange;
}
.raa-menu-text:hover {
@apply tw-text-raa-orange-hover tw-underline;
}
.raa-menu-text:active {
@apply tw-text-raa-orange-active tw-underline;
}
.raa-warning-text {
@apply tw-text-size-1 tw-text-raa-error-red;
}
.raa-secondary-text {
@apply tw-text-size-0.8125 tw-text-raa-gray-5;
}
p {
@apply tw-text-size-1;
}
.tw-heading-xl {
@apply tw-text-size-2 tw-leading-2.5;
}
.tw-heading-lg {
@apply tw-text-size-1.625 tw-leading-1.75;
}
.tw-heading-md {
@apply tw-text-size-1.375 tw-leading-1.563;
}
.tw-heading-sm {
@apply tw-text-size-1.125 tw-leading-1.188;
}
@screen md {
p {
@apply tw-text-size-1 tw-leading-1.375;
}
.tw-heading-xl {
@apply tw-text-size-2.5 tw-leading-2.813;
}
.tw-heading-lg {
@apply tw-text-size-2 tw-leading-2.5;
}
.tw-heading-md {
@apply tw-text-size-1.5 tw-leading-1.875;
}
.tw-heading-sm {
@apply tw-text-size-1.125 tw-leading-1.75;
}
}
@screen lg {
p {
@apply tw-text-size-1 tw-leading-1.375;
}
.tw-heading-xl {
@apply tw-text-size-3 tw-leading-3.125;
}
.tw-heading-lg {
@apply tw-text-size-2.25 tw-leading-2.813;
}
.tw-heading-md {
@apply tw-text-size-1.75 tw-leading-1.875;
}
.tw-heading-sm {
@apply tw-text-size-1.125 tw-leading-1.75;
}
}