-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (55 loc) · 949 Bytes
/
style.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
* {
margin: 0;
padding: 0;
}
.navbar {
width: 100%;
height: 60px;
background-color: rgb(47, 46, 46);
display: flex;
align-items: center;
justify-content: flex-end;
}
.pages {
display: flex;
flex-direction: row;
gap: 40px;
margin-right: 40px;
}
.page {
color: white;
text-decoration: none;
}
#card {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.card-item{
border: 3px solid rgb(42, 41, 41);
border-radius: 10px;
margin: 30px;
padding: 10px;
width: 400px;
height: 250px;
display: flex;
flex-direction: column;
}
.card-image {
width: 150px;
height: 150px;
}
button {
background-color: red;
}
@media only screen and (max-width: 370px) {
.navbar {
height: 150px;
justify-content: flex-start;
}
.pages {
margin-right: 0px;
flex-direction: column;
margin-left: 20px;
}
}