car_deal_util/code/web/car_dealer/css/kane.css

85 lines
1.4 KiB
CSS
Raw Normal View History

2022-10-20 10:04:19 +00:00
/*
* @Author: Kane
* @Date: 2022-10-12 08:49:14
* @LastEditors: Kane
2022-10-21 11:03:12 +00:00
* @LastEditTime: 2022-10-21 17:57:09
2022-10-20 10:04:19 +00:00
* @FilePath: \car_dealer\css\kane.css
* @Description: vue学习用的样式表
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
2022-10-11 17:15:31 +00:00
html {
--backupground-color: #f7f7f7;
--btn-color-blue: #307dbe;
--btn-color-yellow: #f7b24d;
--btn-color-green: #5bad60;
--btn-color-red: #e56651;
--btn-font-color: #fff;
}
#root,
#app {
padding: 50px;
}
2022-10-21 11:03:12 +00:00
/* #root,
2022-10-20 17:19:47 +00:00
#app * + * {
2022-10-11 17:15:31 +00:00
margin-top: 15px;
2022-10-20 10:04:19 +00:00
text-align: center;
2022-10-21 11:03:12 +00:00
} */
2022-10-20 10:04:19 +00:00
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
2022-10-11 17:15:31 +00:00
}
hr {
background-color: steelblue;
border: none;
height: 3px;
2022-10-21 03:49:40 +00:00
/* width: 100% */
2022-10-11 17:15:31 +00:00
}
2022-10-21 03:49:40 +00:00
/* .test {
2022-10-11 17:15:31 +00:00
width: 110vw;
height: 100vh;
border: 1px solid red;
overflow: auto;
2022-10-21 03:49:40 +00:00
} */
2022-10-11 17:15:31 +00:00
button {
padding: 5px 10px;
background-color: var(--btn-color-red);
color: var(--btn-font-color);
width: 10em;
border: none;
border-radius: 0.25em;
font-size: 1.5rem;
2022-10-20 10:04:19 +00:00
text-align: center;
2022-10-11 17:15:31 +00:00
}
2022-10-20 17:19:47 +00:00
button:hover {
cursor: pointer;
}
2022-10-20 10:04:19 +00:00
/* 用于按钮点击时样式切换。 */
2022-10-11 17:15:31 +00:00
button:active {
background-color: var(--btn-font-color);
color: var(--btn-color-red);
}
input {
border: none;
outline: solid 2px #e56651;
font-size: 2rem;
}
label {
display: inline-block;
font-size: 2rem;
margin-top: 15px;
2022-10-20 17:19:47 +00:00
}