-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
118 lines (106 loc) · 1.78 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
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
@import url('https://fonts.googleapis.com/css?family=Arvo:400,700');
body{
margin: 0;
padding: 0;
height: 100vh;
width: 100vw;
overflow-x: hidden;
}
.container{
width: 100%;
height: 100%;
}
.desc{
display: inline-block;
width: 50%;
}
.poster{
}
.poster img{
width: 100%;
top: 0;
left: 0;
position: fixed;
z-index: -1;
transform: scale(1.3);
}
.title{
font-size: 1.5em;
text-align: center;
font-weight: 700;
}
.desc{
display: inline-block;
width: 100vw;
position: absolute;
top: 50%;
font-family: 'Arvo', serif;
/*background: lightgray;*/
}
.description{
padding-top: 3em;
}
.detail{
padding: 2em 2em 2em 2em;
background: white;
}
.contact , .prize{
padding: 1em;
text-align: center;
margin-top: 1em;
display: block;
}
.people span , .prize span{
display: block;
white-space: pre;
}
.phone , .info{
flex:1;
}
.people , .prize span{
flex:5;
}
@media (min-width: 1024px) {
.desc{
top:80%;
}
.detail{
padding: 2em 5em;
margin: 2em 10em;
box-shadow: 0 0 3px #0000005e;
background-color: white;
border-radius: 5px;
}
.contact , .prize{
padding: 1em;
text-align: center;
margin: 2%;
flex: 1;
display: flex;
}
.top_bar{
display: flex;
}
}
/*Scrollbar*/
/*
* STYLE 1
*/
#style-1::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
background-color: #F5F5F5;
}
#style-1::-webkit-scrollbar
{
width: 12px;
background-color: #F5F5F5;
}
#style-1::-webkit-scrollbar-thumb
{
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #555;
}
/**/