-
Notifications
You must be signed in to change notification settings - Fork 1
/
App.css
79 lines (63 loc) · 1.2 KB
/
App.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
.container {
margin: 0 auto;
padding: 0 20px;
}
.proxy-card {
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease-in-out;
}
.proxy-card:hover {
transform: translateY(-5px);
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.proxy-card h2 {
color: #1a202c;
margin-bottom: 0;
}
.proxy-card p {
margin-top: 10px;
margin-bottom: 0;
}
.proxy-card .text-gray-500 {
color: #718096;
}
.proxy-card .bg-blue-500 {
background-color: #4299e1;
}
.proxy-card .bg-blue-500:hover {
background-color: #3182ce;
}
.proxy-card .bg-gray-500 {
background-color: #a0aec0;
}
.proxy-card .bg-gray-500:hover {
background-color: #718096;
}
.proxy-card .text-white {
color: #fff;
}
.proxy-card .rounded-full {
border-radius: 9999px;
}
#footer {
position: fixed;
bottom: 0;
width: 100%;
background-color: #1a202c;
color: #a0aec0;
}
#footer a {
color: #a0aec0;
}
@media (min-width: 640px) and (max-width: 1023px) {
.proxy-card .text-xl {
font-size: 1.5rem;
}
.proxy-card .text-center {
font-size: 1.2rem;
}
.proxy-card .py-2 {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
}