forked from isyfmnp/isyf23
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.css
53 lines (48 loc) · 903 Bytes
/
about.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
.accentdot,
.shadow,
.box:before {
background: linear-gradient(to bottom left, #F96E46 0%, #FBAF00 100%);
}
.shadow {
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.footer div iconify-icon {
color: #FBAF00;
}
#support{
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-around;
}
#support>img, #support>div{
width: calc(50% - 40px);
min-width: 200px;
padding: 20px;
}
#ntuias img{
width: 100%;
}
#ntuias{
text-align: center;
}
#ntuias a {
position: relative;
}
#ntuias a::before {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background-color: #000;
transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (hover: hover) and (pointer: fine) {
#ntuias a:hover::before {
right: auto;
width: 100%;
}
}