An open API service indexing awesome lists of open source software.

https://github.com/muhammadaziz01-dev/car-rental

html , css , scss , bootstrap , js
https://github.com/muhammadaziz01-dev/car-rental

Last synced: about 2 months ago
JSON representation

html , css , scss , bootstrap , js

Awesome Lists containing this project

README

        

### SCSS starter


### FOLDER STRUCTRE


- ### assets
>
- images
- fonst


- ### css

>
- style.css (expaned)
- style.min.css (minified)


- ### public

>
- favicon (folder)
- robots.txt (SEO)


- ### scss

>
- all (folder) (layout.scss , ETC)
- robots.txt (SEO)


### Variables

```
$varName: value;

for example: 👉 $text-color: red;


```

### Nested in BEM

```

for example: 👉

index.html




inner child


style.scss

.parent{

width:100%;
padding:50px;

&__child{
width:300px;
height:300px;
background:teal;

&-inner{
color: $text-color;
font-size:20px;
}
}
}

```


### Extends

```

%extendName{
property:value;
...
..
.
}

.className{
@extand %extendName;
}

```


### Mixins

```

@mixin mixinName($arg1, arg2, ....){
property1:$arg1;
property2:$arg2;
color:red;
...
..
.
}

.className{
@include mixnName(value1, value2 , ...);
}

```