forked from FreeTubeApp/FreeTube
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
58 lines (48 loc) · 887 Bytes
/
App.css
File metadata and controls
58 lines (48 loc) · 887 Bytes
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
@font-face {
font-family: Roboto;
src: url(assets/font/Roboto-Regular.ttf);
}
#app {
display: flex;
flex-wrap: wrap;
font-family: 'Roboto', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
height: 100%;
}
.routerView {
flex: 1 1 0%;
margin: 18px 10px;
}
.banner {
width: 85%;
margin: 20px auto 0;
}
.banner-wrapper {
margin: 0 10px;
}
.flexBox {
display: block;
}
#changeLogText {
overflow-y: scroll;
height: 40vh;
display: block
}
.fade-enter-active, .fade-leave-active {
transition: opacity .15s;
}
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
opacity: 0;
}
@media only screen and (max-width: 680px) {
.routerView {
margin: 68px 8px 68px;
}
.banner {
width: 80%;
margin-top: 20px;
}
.flexBox {
margin-top: 60px;
margin-bottom: -75px;
}
}