-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (60 loc) · 1.27 KB
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-thumb {
background-color: rgba(245, 245, 245, 0.308);
}
::-webkit-scrollbar-track {
background: linear-gradient(to bottom,#1b1e4b, #ffffff73);
}
body {
background-color: #1b1e4b;
}
#title {
text-align: center;
-webkit-text-stroke: 1px #3D64B8;
font: italic 3.2vmax Fantasy, Comic Sans MS;
width: 30%;
margin: auto;
color: #FECA1B;
padding: 2px;
margin-top: 15px;
}
.poke-boxs {
border-radius: 10px;
background: linear-gradient(to bottom,#1b1e4b, #ffffff73);
padding: 25px;
box-shadow: 0px 20px 10px #ffffff1f;
margin: 0 2%;
margin-bottom: 40px;
display: flex;
flex-wrap: wrap;
text-align: center;
max-width: 1124px;
}
.poke-boxs img {
width: 80%;
}
.poke-box {
background-color: #ffd445;
width: 29%;
margin: 10px auto;
text-align: center;
border-radius: 5px;
font-family:cursive;
color: #202031;
box-shadow: 0px 0px 0px 1px black;
max-width: 150px;
}
#align-poke {
margin: auto;
text-align: center;
width: 80%;
}
@media screen and (min-width: 1172px) {
}