-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
68 lines (59 loc) · 933 Bytes
/
index.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
body {
margin: 0;
padding: 0;
}
/* Variables */
div {
background-color: rgb(66, 170, 244);
font: 100% Helvetica, sans-serif;
}
/* Nesting */
nav {
background-color: rgb(66, 170, 244);
margin-bottom: 15px;
}
nav ul {
margin: 0;
padding: 0;
list-style: none;
}
nav li {
display: inline-block;
padding: 20px;
}
nav a {
text-decoration: none;
color: black;
padding: 20px;
}
/* Modules */
span {
background-color: rgb(237, 233, 100);
}
/* Mixin */
#mixin-test {
height: 100px;
width: 100px;
background-color: DarkGray;
box-shadow: 5px 5px 15px rgb(66, 170, 244);
color: aqua;
margin: 20px;
}
/* Extend/Inheritance*/
article, .message {
border: 1px solid rgb(231, 87, 186);
padding: 5px;
color: rgb(16, 56, 36);
}
/* Operators */
.container {
display: flex;
}
article {
width: 220px;
height: 220px;
}
article[role=main] {
width: 80%;
}
/*# sourceMappingURL=index.css.map */