-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.css
84 lines (67 loc) · 1.57 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {background-color: white;
width: 100vw;
overflow-x: hidden;
flex-wrap: wrap;
}
.img {
height: auto;
object-fit: cover;
width: 100% auto;
margin-bottom: 11rem;
position: relative;
align-items: center;
}
#video{
position: absolute;
z-index: -1;
height: 60vw;
}
.EX {font-weight: bold;font-size: 60px;
color: hsl(240, 36%, 28%);
display:flex;
padding: 2rem 3rem;
justify-content: center;
margin-inline-start: 2PX;}
.EA {font-weight: bold;
font-size: 50px;
color: rgb(228, 30, 4);
padding: 2rem 3rem;
display:flex;
justify-content: center;
margin-inline-start: 2PX;
font-size: 40px;}
.home { font-size: 15px;
display: flex;
flex-direction: row;
justify-content: space-around;}
.quick {color:rgb(240, 240, 217);}
.mom {
color: white;
font-size: 30px;
justify-content: center;
margin: 20px;
border: 1PX;
box-shadow: 0 4PX 8PX;
background-color: green;
width: 18rem;
padding: 3px;
border-radius: 1rem;
}
#view {
text-align: center;
padding: 2rem 3rem;
}
@media (max-width:768px){
#video {
display: none;
}
.img{
background-image: url(IMAGES/ELEPHANT3.jpg);
margin-bottom: -5rem;
}
}