-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
127 lines (114 loc) · 3.12 KB
/
style.css
File metadata and controls
127 lines (114 loc) · 3.12 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
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
@charset "UTF-8";
/*
Theme Name: Link Me Up
Theme URI: https://nextab.de
Author: nexTab – Oliver Gehrmann
Author URI:
Description: Basic Gutenberg based WordPress theme to list links to your favorite sites on the net
Requires at least: 6.0
Tested up to: 6.8.2
Requires PHP: 8.1
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: link-me-up
Tags:
*/
/* #region Colors */
:root {
--color-text: var(--wp--preset--color--custom-text-color, #191616);
--color-bg: var(--wp--preset--color--custom-background-color, #fff);
--primary: var(--wp--preset--color--custom-primary, #d10707);
--secondary: var(--wp--preset--color--custom-secondary, #2ea3f2);
}
/* #endregion Colors */
/* #region Font Sizes */
/* #endregion Font Sizes */
/* #region Masks */
.wp-block-button.is-style-ripped-paper-button .wp-block-button__link {
background-color: currentColor;
mask-repeat: no-repeat;
mask-position: center;
mask-size: contain;
}
/* #endregion Masks */
/* #region Placeholder Mixin */
/* #endregion Placeholder Mixin */
/* #region Widths */
/* #endregion Widths */
/* #region Containers */
/* #endregion Containers */
/* #region Normalization */
* {
box-sizing: border-box;
}
html {
font-size: 16px;
scroll-behavior: smooth !important;
}
body {
-webkit-font-smoothing: antialiased;
color: var(--color-text);
font-size: 100%;
line-height: 1.5;
}
.fullheight {
min-height: calc(100vh - var(--wp-admin--admin-bar--height, 0px)) !important;
}
.fullwidth {
max-width: 100% !important;
width: 100% !important;
}
/* #region Overwrite Gutenberg Special Crap */
:where(.wp-site-blocks) > * {
margin-block-start: 0;
}
:where(.wp-block-cover-image.is-light:not(.has-text-color)), :where(.wp-block-cover.is-light:not(.has-text-color)) {
color: var(--color-text);
}
.align_flex_start.is-layout-flex {
align-items: flex-start;
}
.wp-block-buttons.is-content-justification-center.is-layout-flex {
justify-content: center;
width: 100%;
}
/* #endregion Overwrite Gutenberg Special Crap */
/* #endregion Normalization */
/* #region Typography */
h1, h2, h4, h5, h6 {
line-height: 1.2;
text-wrap: balance;
}
/* #endregion Typography */
/* #region Button Styles */
.wp-block-button__link {
border-radius: 50px;
border: 2px solid transparent;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
padding: 0.75rem 1.5rem;
font-weight: 600;
text-align: center;
cursor: pointer;
}
.wp-block-button.is-style-outline-button .wp-block-button__link {
background-color: transparent !important;
border: 2px solid currentColor;
color: var(--wp--preset--color--primary, var(--primary));
}
.wp-block-button.is-style-square-button .wp-block-button__link {
border-radius: 0;
}
.wp-block-button.is-style-minimal-button .wp-block-button__link {
border-radius: 4px;
}
.wp-block-button.is-style-ripped-paper-button .wp-block-button__link {
border-radius: 0;
mask-image: url("assets/img/ripped-paper-mask.svg");
mask-repeat: repeat-x;
position: relative;
padding: 1rem 2rem;
}
/* #endregion Button Styles *//*# sourceMappingURL=style.css.map */