-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (91 loc) · 1.39 KB
/
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
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
* {
padding: 0px;
margin: 0px;
box-sizing: border-box;
font-family: "Arial", serif;
}
.item1{
grid-column: 1/-1;
}
.hidden{
display: none;
}
.highlight-button{
background-color: black;
color: white;
}
main{
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
/* outline: auto; */
/* flex-wrap: wrap; */
}
.show-more-button{
padding: 10px 20px;
font-size: 120%;
background-color: black;
color: white;
border-radius: 5px;
/* align-self: center; */
margin: 20px 0px;
}
body{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
/* background-color: yellow; */
width: 80%;
/* outline: auto; */
margin: 30px 10%;
min-width: 400px;
}
.play-card-container{
display: grid;
grid-template-columns: 50% 50%;
grid-gap: 20px;
/* gutter: 3pt; */
}
header{
padding: 10px 0px;
/* outline: auto; */
width: 100%;
}
.page-heading{
font-size: 2.2rem;
margin: 20px 0px
}
.search-bar{
width: 100%;
border: 1px solid lightgray;
padding: 5px;
border-radius: 5px;
/* margin-bottom: 20px; */
}
.category{
margin-bottom: 15px;
& button{
width: 80px;
padding: 5px 0px;
font-size: 70%;
margin: 5px 0px;
}
}
.play-card{
background-color: rgb(244, 242, 242);
padding: 20px;
& h3{
font-size: 1.5rem;
font-weight: 590;
padding: 1% 0;
}
& .date-play-card{
margin-bottom: 30px;
}
}
.hidden{
display: none;
}