rsnext/examples/with-tigris/styles/globals.css
Steven 4466ba436b
chore(examples): use default prettier for examples/templates (#60530)
## Description
This PR ensures that the default prettier config is used for examples
and templates.

This config is compatible with `prettier@3` as well (upgrading prettier
is bigger change that can be a future PR).

## Changes
- Updated `.prettierrc.json` in root with `"trailingComma": "es5"` (will
be needed upgrading to prettier@3)
- Added `examples/.prettierrc.json` with default config (this will
change every example)
- Added `packages/create-next-app/templates/.prettierrc.json` with
default config (this will change every template)

## Related

- Fixes #54402
- Closes #54409
2024-01-11 16:01:44 -07:00

168 lines
1.4 KiB
CSS

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
html,
body {
background-color: #0f2832;
}
body {
min-width: 768px;
line-height: 1;
font-family: "Rubik", sans-serif;
color: #ffffff;
}
ol,
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
button {
cursor: pointer;
border: 0;
font-family: inherit;
background-color: transparent;
}
a {
color: #4ed9b2;
text-decoration: none;
}
mark {
background-color: transparent;
}
input {
font-family: inherit;
}
h4 {
font-size: 26px;
line-height: 32px;
font-weight: 600;
}
h3 {
font-size: 24px;
line-height: 32px;
font-weight: 500;
}
h2 {
font-size: 20px;
line-height: 30px;
font-weight: 400;
}
h1 {
font-size: 16px;
line-height: 20px;
font-weight: 300;
}
* {
box-sizing: border-box;
}