-
Notifications
You must be signed in to change notification settings - Fork 0
/
goToOtherPage.css
110 lines (84 loc) · 1.83 KB
/
goToOtherPage.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
.endframe {
width: 100vw;
height: 700px;
display: flex;
flex-direction: row;
justify-content: center;
}
.endbox {
position: relative;
width: 600px;
height: 700px;
display: flex;
justify-content: center;
align-items: flex-end;
overflow: hidden;
z-index: 999;
}
.endbox:hover .endphoto{
transform: scale(1.2);
}
.endbox:hover .endframe__background {
transform: scale(1.1);
}
.endphoto {
width: 100%;
height: 100%;
cursor: pointer;
transition: transform 0.8s;
-o-transition: transform 0.8s;
-moz-transition: transform 0.8s;
-webkit-transition: transform 0.8s;
z-index: -1;
}
.endframe__background {
position: absolute;
width: 100%;
height: 100%;
display: flex;
padding: 10% 0px;
justify-content: center;
align-items: flex-end;
transition: transform 0.8s .2s;
-o-transition: transform 0.8s .2s;
-moz-transition: transform 0.8s .2s;
-webkit-transition: transform 0.8s .2s;
z-index: -1;
}
.goevent > a{
all:unset;
}
.goevent {
all: unset;
width: 65%;
height: 25%;
margin-bottom: 10%;
background-color: white;
color: black;
cursor: pointer;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
transition: transform 0.9s;
-o-transition: transform 0.9s;
-moz-transition: transform 0.9s;
-webkit-transition: transform 0.9s;
}
.goeventtitle {
color: black;
font-size: 25px;
font-weight: bold;
font-family: "Noto Sans KR", sans-serif;
}
.goeventcontent {
color: #a7a7a7;
font-family: "Noto Sans KR", sans-serif;
font-size: 15px;
}
@media screen and (max-width: 1025px)
{
.goeventcontent {
font-size: 13px;
}
}