-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbigscreen.css
54 lines (53 loc) · 1.09 KB
/
bigscreen.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
@media screen and (min-width:600px){
#big-screen{
position: fixed;
top:0;
overflow: hidden;
height: 120vh;
width: 100vw;
background-color: rgb(236, 236, 236);
z-index:1;
}
#big-screen img{
position: fixed;
top:0;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index:1;
}
#big-screen span{
position: fixed;
top:120px;
left: 60px;
font-size: 30px;
font-weight: 600;
color: rgb(73, 65, 57);
z-index:1;
}
#big-screen p{
position: fixed;
top:150px;
left: 120px;
font-size: 18px;
font-weight: 600;
color: rgb(73, 65, 57);
opacity: 0.7;
z-index:1;
}
}
@media screen and (max-width:600px){
#big-screen{
visibility: hidden;
position: absolute;
top:0;
}
#big-screen img{
position: absolute;
top:0;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index:1;
}
}