File size: 1,094 Bytes
1e92f2d |
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 |
/*
Global styles for the subscription manager app
*/
@import "@wordpress/components/build-style/style.css";
@import "@automattic/calypso-color-schemes";
@import "@automattic/typography/styles/fonts";
@import "@automattic/color-studio/dist/color-variables";
@import "@wordpress/base-styles/breakpoints";
@import "calypso/assets/stylesheets/shared/loading";
@import "./search-component";
@import "calypso/assets/stylesheets/style";
body {
background-color: $studio-white;
font-family: $sans;
text-rendering: optimizeLegibility;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
// Basic stylings
margin: 0;
line-height: 1.5;
h1,
h2,
h3,
p {
font-family: $sans;
font-weight: 400;
margin: 0;
}
a,
a:visited {
text-decoration: none;
color: var(--color-link);
}
button {
background-color: transparent;
border: none;
}
ul {
padding: 0;
}
@extend %search-component-subscriptions-style;
hr.subscriptions__separator {
width: 100%;
height: 0;
margin: 0;
padding: 0;
border: none;
border-top: 1px solid $studio-gray-5;
}
}
|