gpt4 book ai didi

css - 不熟悉 Sass,我认为我的 main.scss 中有一个小语法问题阻止我编译

转载 作者:太空宇宙 更新时间:2023-11-04 03:46:38 25 4
gpt4 key购买 nike

我正在设置一个 Jekyll 页面,我正在使用的当前主题使用 Sass,但 GitHub 页面(我托管它的地方)不支持 Sass。所以我试图将我的 .scss 文件转换为 .css 但我在这个文件上收到错误:

---
---

@import 'syntax';

$site-background-color: #f5f5f5;
$contrast-color: #333;

$azul-accent-color: #0070bb;
$ruby-accent-color: #e0115f;
$amber-accent-color: #ff7e00;
$avocado-accent-color: #568203;

/*============================================================================*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
background-color: $site-background-color;
border-top: 5px solid $contrast-color;
font-family: 'Source Sans Pro', sans-serif;
color: $contrast-color;
font-weight: 400;
line-height: 1.5;

-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, dl,
blockquote,
table,
img,
hr,
.fluid-width-video-wrapper,
.highlight {
margin-bottom: 20px;
}

blockquote {
padding: 0 30px;
border-left: 2px solid darken($site-background-color, 15%);
}

ul, ol {
margin-left: 40px;
}

img {
max-width: 100%;
height: auto;
border: none;
outline: none;
}

a {
text-decoration: none;
}

hr {
border : 0;
height: 25px;
background : url(/public/images/eagle.png) center center no-repeat;
}

code {
font-family: Consolas, "Liberation Mono", Courier, monospace;
font-size: .8rem;
}

p code {
padding: 0px 5px;
border: 1px solid #ddd;
background-color: #f8f8f8;
border-radius: 3px;
white-space: nowrap;
}

table {
border-collapse: collapse;
border: 1px solid $contrast-color;

td, th {
border: 1px solid $contrast-color;
padding: 5px 10px;
}

thead {
background-color: darken($site-background-color, 10%);
}
}

// TODO: make dt smaller
dt {
float: left;
width: 30%;
font-weight: bold;
}

dd {
float: right;
width: 70%;
}

footer {
font-size: .8rem;
text-align: center;
}

/*============================================================================*/
.azul { a { color: $azul-accent-color;
&:hover { color: darken($azul-accent-color, 20%);
}}}

.ruby { a { color: $ruby-accent-color;
&:hover { color: darken($ruby-accent-color, 20%);
}}}

.amber { a { color: $amber-accent-color;
&:hover { color: darken($amber-accent-color, 20%);
}}}

.avocado { a { color: $avocado-accent-color;
&:hover { color: darken($avocado-accent-color, 20%);
}}}

/*----------------------------------------------------------------------------*/

.highlight {
padding: 30px;
border-radius: 6px;
background-color: #272822;
color: #f8f8f2;
line-height: 1;

code {
font-size: .7rem;
}
}

.container {
max-width: 750px;
padding: 0 20px;
}

.center {
text-align: center;
}

.right {
float: right;
margin: 0 0 20px 20px;
}

.left {
float: left;
margin: 0 20px 20px 0;
}

.top-navbar {
margin-bottom: 40px;
height: 110px;

a {
display: inline-block;
color: $contrast-color;
padding: 66px 20px 25px;
margin-right: 10px;
margin-top: -5px;
text-transform: uppercase;
border-radius: 0 0 5px 5px;
border-bottom: 1px solid lighten($contrast-color, 10%);
transition: all ease-in-out .3s;

&:hover,
&.current-page {
color: $site-background-color;
border-bottom: none;
}

&:hover {
background-color: $contrast-color;
transform: translateY(5px);
}

&.current-page {
background-color: $contrast-color;
}
}
}

.archive,
.single {
margin-bottom: 100px;
}

.single {
font-size: 1.125rem;
line-height: 28px;
}

.single time {
color: #999;
font-size: .9rem;
}

.bundle {
border-top: 1px solid lighten($contrast-color, 50%);
padding-top: 10px;
margin-bottom: 10px;
}

.post-date {
text-align: right;
}

.not-found {
margin-top: 150px;
text-align: center;
font-size: 2rem;
}

.not-found h1 {
font-size: 8rem;
}

dl,
.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}

dl,
.clearfix:after {
clear: both;
}

/*============================================================================*/
#logo {
display: inline-block;
height: 110px;
width: 110px;
background-size: 90px 90px;
background-position: left center;
background-repeat: no-repeat;
}

/*============================================================================*/
@media screen and (max-width: 767px) {
.top-navbar {
height: 35px;
text-align: center;
margin-top: 40px;

a {
padding: 5px 10px;
margin: 5px;
border-radius: 0;
border: 1px solid $contrast-color;
transition: none;

&:hover {
transform: none;
}
}
}

.bundle,
.post-date {
text-align: center;
}

.bundle article {
margin-bottom: 30px;
}

#logo {
background-position: center center;
}
}

错误是:

Line 1: Invalid CSS after "-": expected number or function, was "--"

我想有一个我缺少的快速修复方法,因为我根本不熟悉 Sass。我对吗?有人知道我该如何解决这个问题吗?

此外,我正在使用以下命令将 scss 转换为 css sass --watch main.scss:main.css 如果有人知道更好的方法,请告诉我!

感谢您的帮助!

最佳答案

你的文件开头有两行---;你认为他们在做什么?删除它们,它们在语法上无效并且会导致您的错误。

关于css - 不熟悉 Sass,我认为我的 main.scss 中有一个小语法问题阻止我编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24004238/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com