[S2L4] Preprocessing 2 Flashcards

1
Q

Was sind parametrische Mixins?

A

Less Mixing, welche Parameter und Argumente akzeptieren

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Wie sieht ein custom Mixin aus?

A
.custom-layout(@justify, @align){
	display: flex;
	justify-content: @justify;
	align-items: @align;
}
// usage
.custom-layout(flex-end, center);
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Was ist der unterschied zwischen Yarn und NPM?

A
  • Ziemlich gleich zum installieren und managen von Versionen von Software
  • Sind historisch gewachsen machen aber das gleiche
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Was macht eine Funktion in Less?

A

-Verändert einen CSS Wert gemäß der Funktion

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Wie sieht ein Beispiel für eine Funktion in Less aus?

A
//Darken macht die Farbe um 5% dunkler 
 &:hover {
	// The compiled color returned is #006667 
    background-color: darken(teal, 5%)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Was sind Escapes in Less?

A

-Text der als Strings in Escape Variablen gespeichert wird.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Wie sieht ein Escape in Less aus?

A

// Escaped values
@tablet: ~”(min-width: 500px)”;
@desktop: ~”(min-width: 800px)”;

h1 {
font-size: 2rem;
padding: 10px;

@media @tablet {
padding: 20px;
}

@media @desktop {
font-size: 1.8rem;
padding: 0 10px;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Was sind imports in LESS?

A

-Das Importierten von anderen Less Dateien die man die die LESS Datei laden kann

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Wie organisiert man eine Less @imports am besten?

A

-// The cascade matters!

// Vars and Mixins
@import "variables";
@import "mixins";
// General Styles Here
@import "reset";
@import "general-styles";
// Components Here
@import "header";
@import "cta";
@import "main-content";
@import "contact";
@import "footer";
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Wie organisiert man eine Less @imports am besten?

A

-// The cascade matters!

// Vars and Mixins
@import "variables";
@import "mixins";
// General Styles Here
@import "reset";
@import "general-styles";
// Components Here
@import "header";
@import "cta";
@import "main-content";
@import "contact";
@import "footer";
How well did you know this?
1
Not at all
2
3
4
5
Perfectly