2022-11-22 08:44:16 +00:00
|
|
|
/*
|
|
|
|
* @Author: Kane
|
|
|
|
* @Date: 2022-11-12 23:32:20
|
|
|
|
* @LastEditors: Kane
|
2022-11-22 16:40:23 +00:00
|
|
|
* @LastEditTime: 2022-11-22 23:20:12
|
|
|
|
* @FilePath: \vue学习\css\app.css
|
2022-11-22 08:44:16 +00:00
|
|
|
* @Description:
|
|
|
|
*
|
|
|
|
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
|
|
|
*/
|
|
|
|
@import url("colors.css");
|
|
|
|
|
|
|
|
body {
|
|
|
|
background-color: var(--backupground-color);
|
2022-11-22 09:27:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#root,
|
|
|
|
#app {
|
2022-11-22 08:44:16 +00:00
|
|
|
padding: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
background-color: #fff;
|
|
|
|
width: 25rem;
|
|
|
|
margin: 0px auto;
|
|
|
|
border-radius: 5px;
|
2022-11-22 16:40:23 +00:00
|
|
|
padding: 50px;
|
2022-11-22 08:44:16 +00:00
|
|
|
}
|