-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsourcestyle.css
More file actions
128 lines (110 loc) · 1.81 KB
/
Copy pathsourcestyle.css
File metadata and controls
128 lines (110 loc) · 1.81 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
* {
box-sizing: border-box;
}
body {
margin: 0;
background: #f1fffb;
font-family: Arial, sans-serif;
}
.page {
max-width: 420px;
margin: 0 auto;
padding: 20px 0;
background: #93ffd4;
border-radius: 12px;
overflow: hidden;
}
.top {
display: flex;
gap: 12px;
}
.title-box {
flex: 1.2;
background: #d2fff1;
border-radius: 0 0 0 0;
padding: 16px;
opacity: 0;
}
.title-box h1 {
margin: 0;
font-size: 28px;
letter-spacing: 2px;
}
.title-box p {
font-size: 13px;
line-height: 1.4;
}
.links {
flex: 1;
display: flex;
flex-direction: column;
gap: 10px;
}
.link {
background: #d2fff1;
height: 100px;
padding: 14px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 13px;
transform: translateX(120%);
opacity: 0;
transition: 0.8s ease;
}
.images {
margin-top: 20px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 14px;
}
.image-card {
background: white;
height: 100px;
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
text-align: center;
opacity: 0;
transition: 0.8s ease;
}
.links {
margin: 20px 0 -20px 0;
padding: 16px;
background: #d2fff1;
border-radius: 12px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.links .link2 {
padding: 12px;
border: none;
border-radius: 12px;
background: #93ffd4;
color: black;
cursor: pointer;
font-size: 13px;
transition: 0.3s;
text-align: center;
text-decoration: none
}
.links .link2:hover {
background: #acffde;
cursor: pointer;
}
.from-left {
transform: translateX(-120%);
border-radius: 0 24px 24px 0;
}
.from-right {
transform: translateX(+120%);
border-radius: 24px 0 0 24px;
}
.slide-in {
transform: translateX(0);
opacity: 1;
}