We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f9677b commit 1531bb8Copy full SHA for 1531bb8
exercises/04-list-styling/solution.hide.css
@@ -0,0 +1,30 @@
1
+body {
2
+ height: 100vh;
3
+ background: rgb(189, 189, 189);
4
+}
5
+
6
+.container {
7
+ font-family: "Comic Sans MS", "Comic Sans", cursive;
8
+ margin: 0 auto;
9
+ width: 70vw;
10
+ box-shadow: 3px 5px 20px #312f2f;
11
+ background-color: white;
12
+ padding: 120px;
13
+ width: 300px;
14
15
16
+.cocacola {
17
+ list-style-type: lower-alpha;
18
19
20
+.pepsi {
21
+ list-style-type: square;
22
23
24
+.healthy {
25
+ list-style-type: armenian;
26
27
28
+.dev-drinks {
29
+ list-style-type: none;
30
0 commit comments