gnusocial.rocks/assets/css/reset.css

114 lines
1.3 KiB
CSS
Raw Normal View History

2021-12-09 18:58:42 +00:00
* {
2022-02-25 21:22:57 +00:00
box-sizing: border-box;
2021-12-09 18:58:42 +00:00
}
2022-02-25 21:22:57 +00:00
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
body,
html,
p,
blockquote,
fieldset,
input,
textarea {
margin: 0;
padding: 0;
border: none;
}
a img,
:link img,
:visited img {
border: none;
}
:focus {
2022-02-25 21:22:57 +00:00
outline: none;
}
::-moz-focus-inner {
2022-02-25 21:22:57 +00:00
border: 0;
}
form {
2022-02-25 21:22:57 +00:00
all: unset;
}
html {
font-size: 100%;
}
body,
html {
-webkit-font-smoothing: subpixel-antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "open_sansregular", sans-serif;
font-weight: 400;
line-height: 1.75;
color: #221e22;
background-color: #f6f4f6;
}
a {
2022-02-25 21:22:57 +00:00
text-decoration: none !important;
color: #A6263E;
}
2021-08-18 19:27:59 +01:00
a:hover,
a:focus {
2022-02-25 21:22:57 +00:00
text-decoration-line: underline !important;
transition: 500ms ease-in-out;
}
a:active {
2022-02-25 21:22:57 +00:00
text-decoration-line: underline !important;
}
b {
font-family: 'open_sansbold';
font-weight: bold;
}
h1,
h2,
h3,
h4,
h5,
h6,
label {
2022-02-25 21:22:57 +00:00
color: #3f3b3b;
}
p {
margin-bottom: 1rem;
}
h1,
h2,
h3,
h4,
h5 {
margin: 3rem 0 1.38rem;
font-weight: 400;
line-height: 1.3;
}
h1 {
2022-02-25 21:22:57 +00:00
margin-top: 0;
font-size: 1.802rem;
}
h2 {
2022-02-25 21:22:57 +00:00
font-size: 1.602rem;
}
h3 {
2022-02-25 21:22:57 +00:00
font-size: 1.424rem;
}
h4 {
2022-02-25 21:22:57 +00:00
font-size: 1.266rem;
}
h5 {
font-size: 1.125rem;
}
small,
.text_small {
font-size: 0.889rem;
}
ul li {
2022-02-25 21:22:57 +00:00
margin-left: 2rem;
line-height: 1.75;
2021-12-09 18:58:42 +00:00
}