-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzero.css
More file actions
66 lines (57 loc) · 1.01 KB
/
zero.css
File metadata and controls
66 lines (57 loc) · 1.01 KB
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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
background-color: rgb(74, 73, 73);
}
nav {
/* margin: 10px; */
background-color: black;
width: 100%;
}
nav ul {
display: flex;
/* margin: 10px; */
justify-content: center;
align-items: center;
}
nav ul li {
padding: 10px;
/* margin: 2px; */
list-style: none;
color: rgb(0, 0, 0);
border-radius: 10px;
background-color: azure;
margin: 2px;
padding: 2px;
}
.container{
height: 544px;
width: 100%;
border: 2px solid black;
/* margin: 5px;
padding: 5px; this will give you an unwanted horizontal scroll-bar*/
display: flex;
gap: 10px;
justify-content: center;
align-items: flex-start;
}
.card{
background-color: white;
height: 444px;
width: 244px;
}
.card1{
background-color: antiquewhite;
}
.card2{
background-color: pink;
}
.card3{
background-color: rgb(108, 108, 249);
}
.card4{
background-color: #fb6464;
}