-
Notifications
You must be signed in to change notification settings - Fork 0
/
add-ons.css
139 lines (118 loc) · 2.18 KB
/
add-ons.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
body {
background: linear-gradient(-225deg, #ff057c 0%, #7c64d5 48%, #4cc3ff 100%);
font-family: "Shadows Into Light", cursive;
}
h1,
h2,
h3 {
text-align: center;
}
h1 {
font-weight: 900px;
text-shadow: 2px 2px rgb(253, 123, 207);
}
h2,
h3 {
font-weight: 500;
}
h2 {
text-shadow: 0.5px 0.5px violet;
}
a {
color: blueviolet;
text-decoration: none;
}
img {
max-width: 100%;
border-radius: 30px;
width: 350px;
margin: 0 auto;
display: block;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
}
.img-1 {
transition: all 150ms ease-in-out;
width: 50%;
margin-bottom: 30px;
aspect-ratio: 1 / 1;
}
.img-1:hover {
filter: contrast(50%);
transform: scale(1.2);
}
.grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-gap: 15px;
}
.grid img {
width: 250px;
transition: all 150ms ease-in-out;
margin-bottom: 20px;
}
.grid img:hover {
transform: scale(1.2);
}
.grid .img-1 {
grid-gap: 20px;
}
p {
margin-bottom: 35px;
text-align: justify;
}
.container {
max-width: 600px;
margin: 20px auto;
background: linear-gradient(to top, #cd9cf2 0%, #f6f3ff 100%);
padding: 20px;
border-radius: 30px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
}
button {
font-family: "Shadows Into Light", cursive;
display: block;
margin: 0 auto;
background-color: pink;
border: none;
padding: 5px 10px;
border-radius: 10px;
font-weight: bold;
color: purple;
transition: all 180ms ease-in-out;
cursor: pointer;
}
button:hover {
background-color: rgb(253, 123, 207);
}
.theme-btn {
background-color: rgb(103, 34, 168);
color: rgba(245, 245, 245, 0.74);
}
.theme-btn:hover {
background-color: rgb(159, 75, 238);
color: black;
}
.JPN {
color: purple;
font-weight: bolder;
}
.dark {
background: radial-gradient(
circle at 24.1% 68.8%,
rgb(50, 50, 50) 0%,
rgb(0, 0, 0) 99.4%
);
font-family: "Shadows Into Light", cursive;
}
.dark .container {
background: radial-gradient(
circle at 52.1% -29.6%,
rgb(144, 17, 105) 0%,
rgb(51, 0, 131) 100.2%
);
color: rgba(245, 245, 245, 0.509);
}
footer {
text-align: center;
margin: 35px 0;
}