-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss.css
257 lines (228 loc) · 5.26 KB
/
css.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/*
* 链接:https://juejin.cn/post/7141400972634357768
* css有更改
* 来源:稀土掘金
* 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
*/
.container {
margin: 0 auto;
position: relative;
display: flex;
justify-content: center;
max-width: 1200px;
flex-wrap: wrap;
align-content: flex-start;
}
.container .card {
margin: 0 auto;
height: 400px;
width: 270px;
margin: 30px;
box-shadow: 10px 10px 20px #7193FF;
border-radius: 15px;
background: linear-gradient(45deg,#7193FF, #B780FF);
border-top: 1px solid linear-gradient(45deg,#7193FF, #B780FF);
border-left: 1px solid linear-gradient(45deg,#7193FF, #B780FF);
}
.container .card .content {
margin: 0 auto;
padding: 20px;
text-align: center;
transition: 0.5s;
}
.container .card .content h2 {
font-family: Harmony OS Sans;
font-size: larger;
margin: 0 auto;
position: absolute;
top: -60px;
right: 1px;
font-size: 10em;
color: rgb(255, 255, 255);
pointer-events: none;
}
.container .card .content h3 {
font-family: Harmony OS Sans;
font-size: large;
margin: 0 auto;
font-size: 1.8em;
color: rgb(255, 255, 255);
z-index: 1;
}
.container .card .content p {
font-family: Harmony OS Sans;
font-size: medium;
font-size: 1em;
color: rgb(255, 255, 255);
font-weight: 300;
}
.container .card .content .title {
font-family: Harmony OS Sans;
font-size: small;
position: relative;
display: inline-block;
padding: 10px 20px;
margin-top: 10px;
background: linear-gradient(45deg,#7193FF, #B780FF);
color: rgb(255, 255, 255);
border-radius: 15px;
text-decoration: none;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
/*
* 上方css来源链接:https://juejin.cn/post/7141400972634357768
* css有更改
* 上方css来源:稀土掘金
* 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
*/
.card {
transform: scale(1);
transition: all 0.2s ease-in;
}
.card:hover {
transform: scale(1.05);
transition: all 0.2s ease-in;
}
.text-color-white {
color: #fff;
}
img {
border-radius: 15px;
}
a {
font-family: Harmony OS Sans;
text-decoration:none;
text-align: center;
}
.button {
display: inline-block;
border-radius: 4px;
border: none;
color: #ffffff;
background: #455eef;
text-align: center;
font-size: 28px;
padding: 20px;
width: 200px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
box-shadow: 0 4px 14px 0 #455fef;
}
.button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.button span:after {
content: "»";
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
.button:hover span {
padding-right: 25px;
}
.button:hover span:after {
opacity: 1;
right: 0;
}
.app-button {
font-family: Harmony OS Sans SC;
font-weight: normal;
display: inline-block;
border-radius: 6px;
-webkit-border-radius: 6px;
background-color: #0070f3;
border: none;
color: #ffffff;
text-align: center;
font-size: 20px;
padding: 20px;
width: 200px;
transition: all 0.5s;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
cursor: pointer;
margin: 5px;
box-shadow: 0 4px 14px 0 rgb(0 118 255 / 39%);
-webkit-box-shadow: 0 4px 14px 0 rgb(0 118 255 / 39%);
}
.app-button:hover {
background-color: #ffffff;
color: #0070f3;
}
.header {
padding-top: 30px;
padding-bottom: 30px;
background-image: linear-gradient(45deg, #7193ff, #b780ff);
color: #fff;
border-bottom-left-radius: 50%;
border-bottom-right-radius: 50%;
height: 450px;
}
.header .h1 {
font-family: Harmony OS Sans;
font-size: 50px;
font-weight: bold;
}
.msg {
/* background-color: #fafafa;
border-top: solid #eaeaea; */
border-bottom: solid #eaeaea;
padding: 30px;
margin-top: 30px;
text-align: center;
}
.head-title {
font-family: Harmony OS Sans;
font-weight: bold;
}
.mdui-tab-indicator {
opacity: 0;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: rgb(145, 251, 255);
}
li {
float: left;
}
li a {
display: block;
color: rgb(255, 255, 255);
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: rgb(97, 207, 198);
}
.active {
background-color: #4bb3c5;
}
.app-color {
background: linear-gradient(45deg,#7193FF, #B780FF);
color: azure;
}
iframe {
border: none;
}
.mdui-tab * {
color: #fff!important;
}
.mdui-tab a {
min-width: 0px!important;
padding: 12px 10px!important;
}