blob: 56714e141ec01073bd4e948d3b833a2c0ee15b66 (
plain)
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
|
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:host, [class^="sui-"], button, input, select, textarea {
font-family: var(--font-family-base);
font-size: var(--font-size-base);
line-height: var(--line-height-base);
color: var(--color-font-base);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
text-decoration: none;
color: var(--color-link-default);
}
button, input[type="submit"] {
appearance: none;
border: none;
background: transparent;
cursor: pointer;
}
|