element-call-Github/src/index.css

34 lines
636 B
CSS
Raw Normal View History

2021-07-17 05:22:03 +08:00
body {
2021-07-27 07:58:31 +08:00
background-color: #333;
color: #fff;
2021-07-17 05:22:03 +08:00
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
2021-07-27 07:58:31 +08:00
button {
border: none;
background: #ccc;
color: black;
font-size: 16px;
font-weight: bold;
padding: 8px 16px;
border-radius: 4px;
cursor: pointer;
}
button:hover, button:active {
background: #888;
}
a {
color: rgb(102, 180, 233);
font-weight: bold;
}
a:hover, a:active {
color: rgb(76, 134, 173);
}