-
Notifications
You must be signed in to change notification settings - Fork 0
/
media.css
96 lines (94 loc) · 2.11 KB
/
media.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
@media screen and (max-width: 1300px) {
section{
position: initial !important;
border: none;
}
}
@media screen and (max-width: 1000px) {
.entry{
margin-bottom: 100px;
}
.record{
margin-bottom: 20px;
}
.game-wrapper{
height: 80vh;
padding:20px;
}
.game-description{
font-size: 18px;
}
.record:nth-child(even){
height: auto;
flex-direction: column;
}
.record:nth-child(odd){
height: auto;
flex-direction: column-reverse;
}
.trigger{
top:15%;
height: 70%;
}
.text{
width: calc(50vw + 150px);
margin:var(--margin);
margin-top: 60px;
}
.text__additional{
margin-left: 0;
}
.record-info{
flex-direction: column;
align-items: center;
}
.record-info__text{
width: 85vw;
}
.record-info__image-wrapper{
margin-top: 50px;
width: 85vw;
height: 100vh;
display: grid;
grid-template-rows: 1fr;
grid-auto-flow: column;
overflow-x: scroll;
overflow-y: hidden;
background-color: #e5e5f7;
opacity: 1;
background-image: linear-gradient(135deg, #ededed 25%, transparent 25%), linear-gradient(225deg, #ededed 25%, transparent 25%), linear-gradient(45deg, #ededed 25%, transparent 25%), linear-gradient(315deg, #ededed 25%, #ebebf9 25%);
background-position: 10px 0, 10px 0, 0 0, 0 0;
background-size: 20px 20px;
background-repeat: repeat;
}
.record-info__image{
width: 300px;
height: 100%;
margin-right: 40px;
}
.close_record-info{
top:15px;
}
}
@media screen and (max-width: 600px){
.entry{
height: 250px;
object-fit: cover;
overflow: hidden;
}
.custom-shape-divider-top-1685801030{
opacity: 1;
}
.entry__image2{
width: 100%;
}
.project-name{
font-size: 2rem;
}
.project-description{
font-size: 1rem;
}
.scroll-label{
display: none;
}
}