-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmain.css
More file actions
103 lines (83 loc) · 1.52 KB
/
main.css
File metadata and controls
103 lines (83 loc) · 1.52 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
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
@import url('https://fonts.googleapis.com/css2?family=Gowun+Dodum&display=swap');
* {
font-family: 'Gowun Dodum', sans-serif;
}
.mytitle {
background-color: white;
color: black;
height: 150px;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
background-position: center;
background-size: cover;
border: 1px solid black;
}
.logo {
background-color: white;
color: black;
font-size: 50px;
margin: auto 50px;
}
.searchBar {
position: absolute;
left: 50%;
transform: translateX(-50%);
display: flex;
align-items: center;
margin-top: 55px;
}
.searchBar input {
padding: 5px;
width: 300px;
}
.searchBar button {
padding: 5px 10px;
margin-left: 5px;
}
.member {
background-color: white;
color: black;
font-size: 18px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
padding: 10px;
}
.member p {
margin-right: 10px;
cursor: pointer;
}
.card-rating {
color: gray;
}
.mycards {
width: 1500px;
padding: 20px 20px;
margin: 20px auto 20px auto;
}
.card {
color: black;
background-color: black;
padding: 10px;
margin: 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.pageButtons {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
#prevPageButton,
#nextPageButton {
margin: 10px;
margin-bottom: 30px;
padding: 5px;
font-size: 15px;
}