58 lines
1.0 KiB
CSS
Raw Permalink Normal View History

2022-10-20 18:04:19 +08:00
/*
* @Author: Kane
* @Date: 2022-10-12 08:49:14
* @LastEditors: Kane
2022-11-13 00:31:39 +08:00
* @LastEditTime: 2022-11-12 23:34:06
2022-10-20 18:04:19 +08:00
* @FilePath: \car_dealer\css\kane.css
* @Description: vue学习用的样式表
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
2022-10-12 01:15:31 +08:00
html {
2022-11-04 00:22:28 +08:00
--backupground-color: #f4f5f7ff;
2022-10-12 01:15:31 +08:00
--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-20 18:04:19 +08:00
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
2022-10-12 01:15:31 +08:00
}
hr {
background-color: steelblue;
border: none;
height: 3px;
2022-10-21 11:49:40 +08:00
/* width: 100% */
2022-10-12 01:15:31 +08:00
}
2022-10-21 11:49:40 +08:00
/* .test {
2022-11-01 00:13:34 +08:00
width : 110vw;
height : 100vh;
border : 1px solid red;
overflow : auto;
2022-10-21 11:49:40 +08:00
} */
2022-10-12 01:15:31 +08:00
2022-10-23 00:41:28 +08:00
input[type="text"] {
2022-10-12 01:15:31 +08:00
border: none;
outline: solid 2px #e56651;
2022-10-23 00:41:28 +08:00
/* font-size: 2rem; */
2022-10-12 01:15:31 +08:00
}
label {
display: inline-block;
font-size: 2rem;
margin-top: 15px;
2022-10-21 01:19:47 +08:00
}