-
Notifications
You must be signed in to change notification settings - Fork 0
/
HOME.css
140 lines (140 loc) · 2.75 KB
/
HOME.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
140
.head{
font-size: 25px;
font-family: cursive;
text-align: center;
}
body{
font-family: 'Poppins', sans-serif;
}
.list{
overflow: hidden;
max-width: 200%;
height: 90px;
padding: 0px;
margin: 0px;
background: #C70039;
}
.a{
float: left;
display: block;
margin: 0px 15px 0px 15px;
padding: 20px;
text-align: center;
color: floralwhite;
cursor: pointer;
}
.a:hover{
background: #6B001F;
transition-duration: 0.2s;
}
.grid-container{
display: grid;
grid-template-columns: auto auto auto;
}
.grid-item{
display: inline-grid;
background-color: aliceblue;
height: 60vh;
text-align: center;
font-size: 20px;
font-family: sans-serif;
margin: 100px 15px 35px 5px;
padding: 5px;
box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.2), 0 24px 80px 0 rgba(0, 0, 0, 0.19);
}
img{
max-width: 45vh;
max-height: 35vh;
padding: 10px;
}
.btn{
position: relative;
}
.mr{
margin: 100px 15px 15px 15px;
background-color: aliceblue;
padding: 10px;
box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.2), 0 24px 80px 0 rgba(0, 0, 0, 0.19);
}
.as{
font-family: Mountserrat,sans-serif;
font-size: 21px;
margin: 0px;
color: #d6ad86;
padding: 1px;
}
.hs{
font-family: Mountserrat,sans-serif;
font-size: 20px;
margin: 0px;
color: black;
padding: 1px;
}
.ps{
font-family: Mountserrat,cursive;
margin: 0px;
font-size: 18px;
}
.n{
text-align: center;
width: 125px;
height: 40px;
background-color: #C70039;
color: floralwhite;
border: none;
border-radius: 5px;
}
.n:hover{
transition-duration: 0.2s;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
cursor: pointer;
}
.m{
text-align: center;
width: 125px;
height: 40px;
margin: 20px 0px 15px 20px;
background-color: #C70039;
color: floralwhite;
border: none;
}
.m:hover{
transition-duration: 0.2s;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
cursor: pointer;
}
footer{
position: absolute;
background: #C70039;
color: floralwhite;
text-align: center;
margin: 100px 0px 0px 0px;
padding: 40px;
height: 30%;
width: 100%;
}
.f{
display: inline-block;
padding: 20px;
text-align: center;
cursor: pointer;
}
.f:hover{
background-color: #6B001F;
transition-duration: 0.2s;
}
.fa-facebook-square{
padding: 10px;
cursor: pointer;
}
.fa-twitter{
padding: 10px;
cursor: pointer;
}
.fa-instagram{
padding: 10px;
cursor: pointer;
}
.fa:hover{
background: #6B001F;
}