forked from AdaGold/video-store-consumer
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathApp.css
93 lines (81 loc) · 1.66 KB
/
App.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
92
93
.App {
text-align: center;
position: absolute;
background-image: url(https://images.unsplash.com/photo-1505775561242-727b7fba20f0?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=c246da92e7f2654da6c3326e1b35b287&auto=format&fit=crop&w=2850&q=80);
height: 100%;
width: 100%;
color: white;
background-position: fixed;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
background-size: cover;
}
.App-header {
height: 20%;
padding: 20px;
color: white;
display: grid;
grid-template-columns: 1fr 2.7fr 3fr 1fr;
align-items: center;
}
.App-title {
font-size: 2em;
display: inline;
border-right: white 2px solid;
padding-right: 20px;
text-decoration: none;
font-weight: bold;
color: #e31222;
}
.App-intro {
font-size: large;
}
.links {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
align-items: center;
}
.selected-items {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
border-left: white 2px solid;
padding: 12px 0;
}
main {
height: 67vh;
background-color: transparent;
overflow: scroll;
}
button {
width: 120px;
height: 50px;
background-color: transparent;
/* border: solid transparent 2px; */
padding: 5px;
margin: 10px;
color: white;
border: solid 2px;
border-radius: 3px;
}
button:hover {
background-color: grey;
}
.page-link {
text-decoration: none;
color: white;
padding: 0px 30px 0px 30px;
}
.page-link:hover {
color: grey;
}
::-webkit-scrollbar {
-webkit-appearance: none;
width: 7px;
}
::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: rgba(0, 0, 0, .5);
-webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}