-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutility.css
52 lines (46 loc) · 849 Bytes
/
utility.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
.text-center{
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}
.mx-auto{
margin: auto;
}
.flex
{
display: flex;
}
.flex-col{
flex-direction: column;
}
.items-center{
align-items: center;
justify-content: center;
}
.text-center i{
font-size: 2rem;
padding: 10px;
}
.container{
background: rgb(151, 188, 188);
width: 38vw;
height: 75vh;
transition: 3s ease;
border: 2px solid black;
background: radial-gradient(rgb(71, 63, 96), transparent);
}
.container:hover{
background: radial-gradient(rgb(98, 43, 43) ,transparent);
border-radius: 20px;
}
.text-center::after{
content: ' ';
width: 0;
height: 2px;
background-color: red;
display: block;
margin: auto;
transition: 3s ease;
}
.text-center:hover::after{
width: 20%;
}