From 6b8e7676f325320c648281f9285de105826deac3 Mon Sep 17 00:00:00 2001 From: pqu3f57g4 <1265394011@qq.com> Date: Sun, 30 Apr 2023 11:11:24 +0800 Subject: [PATCH] ADD file via upload --- src/main/resources/static/front/css/my.css | 72 ++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 src/main/resources/static/front/css/my.css diff --git a/src/main/resources/static/front/css/my.css b/src/main/resources/static/front/css/my.css new file mode 100644 index 0000000..f093141 --- /dev/null +++ b/src/main/resources/static/front/css/my.css @@ -0,0 +1,72 @@ +/*去除默认样式*/ +::-webkit-scrollbar { + width: 0; + height: 1px +} + +::-webkit-scrollbar-thumb { + border-radius: 5px; + -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, .2); + background: rgba(0, 0, 0, .2) +} + +body, ul, li { + margin: 0; + padding: 0; +} + +ul { + list-style: none; +} + +a { + color: black; + text-decoration: none; +} + +a:hover { + text-decoration: none; + color: black; +} + +/*正常的未被访问过的链接*/ +a:link { + text-decoration: none; + +} +/*已经访问过的链接*/ +a:visited { + text-decoration: none; + color: black; +} +/*鼠标划过(停留)的链接*/ +a:hover { + text-decoration: none; +} +/* 正在点击的链接,鼠标在元素上按下还没有松开*/ +a:active { + text-decoration: none; +} +/* 获得焦点的时候 鼠标松开时显示的颜色*/ +a:focus { + text-decoration: none; +} + +/* 轮播图 */ +.swiper-container { + width: 100%; + height: 350px; +} + +.carousel-img { + width: 100%; + height: 100%; +} + +.bg-gray { + background-color: #EEEEEE; +} + +.p-10 { + padding: 10px 0; +} \ No newline at end of file