-
Notifications
You must be signed in to change notification settings - Fork 0
/
homecss.css
116 lines (111 loc) · 2.35 KB
/
homecss.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
.parent {
display: flex;
justify-content: space-evenly;
}
/* nav{
position: fixed;
} */
.SearchBlood {
width: 200px;
height: 200px;
background-color: rgb(11, 133, 70);
display: flex;
justify-content: center;
align-items: center;
text-align: center;
box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 20px;
border-radius: 5%;
transition: all 0.3s ease 0s;
}
.SearchBlood:hover {
transform: scale(1.1);
box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}
.SearchCamp {
width: 200px;
height: 200px;
background-color: rgb(208, 194, 42);
display: flex;
justify-content: center;
align-items: center;
text-align: center;
box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 20px;
border-radius: 5%;
transition: all 0.3s ease 0s;
}
.SearchCamp:hover {
transform: scale(1.1);
box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}
.DonerLogin {
width: 200px;
height: 200px;
background-color: rgb(238, 76, 67);
display: flex;
justify-content: center;
align-items: center;
text-align: center;
box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 20px;
border-radius: 5%;
transition: all 0.3s ease 0s;
}
.DonerLogin:hover {
transform: scale(1.1);
box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}
.RegCamp {
width: 200px;
height: 200px;
background-color: rgb(67, 153, 238);
display: flex;
justify-content: center;
align-items: center;
text-align: center;
box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 20px;
border-radius: 5%;
transition: all 0.3s ease 0s;
}
.RegCamp:hover {
transform: scale(1.1);
box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}
.learn {
background-color: rgba(0, 0, 0, 0.114);
}
.col {
font-family: "Trade Gothic Pro Bold", "Trade Gothic Pro Light", Impact, Arial, sans-serif;
color: rgb(234, 47, 44);
text-align: center;
font-size: large;
}
.one {
margin-left: 1rem;
margin-right: 1rem;
}
.center {
margin-left: auto;
margin-right: auto;
}
table, th, td {
border: 1px solid white;
border-collapse: collapse;
}
th, td {
background-color: rgb(229, 61, 58);
}
footer {
background-color: rgb(51, 51, 51);
color: rgb(255, 255, 255);
text-align: center;
/* margin-top: 10rem; */
/* margin: 2rem; */
padding: 2rem;
}
.footer-nav-item {
display: inline-block;
margin-right: 1rem;
}
a{
font-size: 1.3rem;
font-weight: bold;
}