58 lines
1.0 KiB
CSS
58 lines
1.0 KiB
CSS
/*
|
||
* @Author: Kane
|
||
* @Date: 2022-10-12 08:49:14
|
||
* @LastEditors: Kane
|
||
* @LastEditTime: 2022-11-12 23:34:06
|
||
* @FilePath: \car_dealer\css\kane.css
|
||
* @Description: vue学习用的样式表!
|
||
*
|
||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||
*/
|
||
|
||
html {
|
||
--backupground-color: #f4f5f7ff;
|
||
--btn-color-blue: #307dbe;
|
||
--btn-color-yellow: #f7b24d;
|
||
--btn-color-green: #5bad60;
|
||
--btn-color-red: #e56651;
|
||
--btn-font-color: #fff;
|
||
}
|
||
|
||
#root,
|
||
#app {
|
||
padding: 50px;
|
||
}
|
||
|
||
.content {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
|
||
hr {
|
||
background-color: steelblue;
|
||
border: none;
|
||
height: 3px;
|
||
/* width: 100% */
|
||
}
|
||
|
||
/* .test {
|
||
width : 110vw;
|
||
height : 100vh;
|
||
border : 1px solid red;
|
||
overflow : auto;
|
||
} */
|
||
|
||
input[type="text"] {
|
||
border: none;
|
||
outline: solid 2px #e56651;
|
||
/* font-size: 2rem; */
|
||
}
|
||
|
||
label {
|
||
display: inline-block;
|
||
font-size: 2rem;
|
||
margin-top: 15px;
|
||
}
|