-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWebDevelopment 103-Sass.css
128 lines (103 loc) · 1.47 KB
/
WebDevelopment 103-Sass.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
@import "https://fonts.googleapis.com/css?family=Poor+Story";
#scss-playground header {
font-family: "Poor Story";
color: brown;
font-size: 60px;
}
#deep {
font-size: 40px;
}
#deep #deeper {
font-size: 30px;
}
#deep #deeper #deepest {
font-size: 20px;
}
#box {
width: 150px;
height: 150px;
background-color: green;
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
margin-bottom: 20px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
-ms-border-radius: 15px;
border-radius: 15px;
}
#box .container-table {
display: table;
}
#box {
border: 6px solid black;
}
.text-1 {
font-size: 10px;
}
.text-2 {
font-size: 20px;
}
.text-3 {
font-size: 30px;
}
.text-4 {
font-size: 40px;
}
.text-5 {
font-size: 50px;
}
.blue-bg {
background-color: blue;
}
.black-bg {
background-color: black;
}
.red-bg {
background-color: red;
}
.box {
height: 200px;
width: 200px;
border-radius: 20px;
}
.text-1 {
font-size: 5px;
}
.text-2 {
font-size: 10px;
}
.text-3 {
font-size: 15px;
}
.text-4 {
font-size: 20px;
}
.text-5 {
font-size: 25px;
}
.text-6 {
font-size: 30px;
}
.text-7 {
font-size: 35px;
}
.text-8 {
font-size: 40px;
}
.text-9 {
font-size: 45px;
}
.text-10 {
font-size: 50px;
}
.info, .important-info {
width: 200px;
border: 1px solid black;
margin: 0 auto;
}
.important-info {
background-color: magenta;
}
/*# sourceMappingURL=WebDevelopment%20103-Sass.css.map */