element-call-Github/src/index.css

71 lines
1.4 KiB
CSS
Raw Normal View History

2021-07-28 03:27:59 +08:00
/*
Copyright 2021 New Vector Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
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);
2021-07-28 03:27:59 +08:00
}
.page {
margin: 0 auto;
max-width: 960px;
display: flex;
flex-direction: column;
padding: 0 20px;
}
.page input {
padding: 8px 4px;
font-size: 16px;
border-radius: 4px;
border: 1px solid #888;
}
.page input, .page button {
display: block;
margin-top: 16px;
}