-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0bs D.css
172 lines (169 loc) · 3.55 KB
/
0bs D.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
@font-face{
font-family: 'Product Sans';
src: url("../about/Product Sans Regular.ttf") format('truetype');
}
nav{
background-image: linear-gradient(rgb(0, 0, 0),rgb(59, 59, 59),rgb(0, 0, 0));
background-size: contain;
height:auto;
text-align: center;
margin: auto;
border-radius: 1vw;
padding: 1%;
margin-bottom: 5vh;
}
body{
background-color: black;
color: rgb(255, 255, 255);
margin: auto;
}
.a:hover{
font-size: 1.6vw;
}
nav img{
width: 5vw;
transition: width ease-in-out 400ms;
}
nav img:hover{
background-color: rgba(255, 255, 255, 0.1);
border-radius: 2vw;
width: 4.75vw;
}
.a{
color: rgb(255, 255, 255);
text-shadow: rgba(255, 255, 255, 0.75) 0 0 10px;
text-decoration: none;
margin: 1%;
font-family: 'Product Sans';
font-size: 1.75vw;
vertical-align:100%;
transition: all 0.8s;
transition-duration: infinite;
}
.showcase a{
color: rgb(255, 255, 255);
text-shadow: rgba(255, 255, 255, 0.75) 0 0 10px;
text-decoration: none;
font-family: 'Product Sans';
transition: all 0.8s;
}
h1,h4{
text-shadow: rgba(255, 255, 255, 0.75) 0 0 10px;
text-align: center;
font-family: 'Product Sans';
font-size: 1.65vw;
transition:font-size 0.8s ease-in-out 100ms;
}
h1,h4:hover{
font-size:1.85vw;
}
.showcase2 a{
text-decoration: none;
}
.showcase2 h4{
padding-left: 3vw;
padding-right: 3vw;
color: rgb(255, 255, 255);
text-decoration: none;
}
footer{
font-family: 'Product Sans';
margin-bottom: 2vh;
}
.movie{
text-decoration: none;
color: rgb(255, 255, 255);
vertical-align: 100%;
}
.showcase{
background-color: rgb(0, 0, 0);
border-radius: 5vw;
width: 40vw;
height: 38vh;
margin: auto;
box-shadow:0 0 24px rgb(255, 255, 255);
transition: 0.8s all;
margin-top: 2.5vw;
margin-bottom: 2vw;
overflow: hidden;
}
.showcase:hover{
border-radius: 6vw;
width: 41vw;
height: 40vh;
}
.showcase1{
background-color: rgb(0, 0, 0);
border-radius: 5vw;
width: 40vw;
height: 38vh;
margin: auto;
box-shadow:0 0 24px rgb(255, 255, 255);
transition: 0.8s all;
margin-top:2vw;
margin-bottom: 2vw ;
overflow: hidden;
}
.showcase1:hover{
border-radius: 6vw;
width: 41vw;
height: 40vh;
}
.showcase2{
background-color: rgb(0, 0, 0);
border-radius: 5vw;
width: 40vw;
height: 38vh;
margin: auto;
box-shadow:0 0 24px rgb(255, 255, 255);
transition: 0.8s all;
margin-top:2vw;
margin-bottom: 2vw ;
overflow: hidden;
}
.showcase2:hover{
border-radius: 6vw;
width: 41vw;
height: 40vh;
}
.showcase3{
background-color: rgb(0, 0, 0);
border-radius: 5vw;
width: 40vw;
height: 38vh;
margin: auto;
box-shadow:0 0 24px rgb(255, 255, 255);
transition: 0.8s all;
margin-top:2vw;
margin-bottom: 2vw ;
overflow: hidden;
}
.showcase3:hover{
border-radius: 6vw;
width: 41vw;
height: 40vh;
}
.showcase3 h4{
color: rgb(255, 255, 255);
text-decoration: none;
margin-top: 18vh;
margin-bottom: 18vh;
}
.showcase3 a{
text-decoration: none;
}
/* width */
::-webkit-scrollbar {
width: 1vw;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: 0 0 3px grey;
border-radius: 2vw;
}
/* Handle */
::-webkit-scrollbar-thumb {
box-shadow: 0 0 7px white;
background: white;
border-radius: 2vw;
}