-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
112 lines (111 loc) · 2.17 KB
/
stylesheet.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
html {
background-image: url(img/indexBackground.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
padding: 0;
margin: 0;
font-size: 30px;
}
body {
opacity: 0.9;
padding: 0;
margin: 0;
height: 100%;
display: flex;
flex-direction: column;
align-items: stretch;
}
/*Here we style the main body*/
.main-body {
display: flex;
justify-content: space-between;
font-size: 20px;
color: #eff150;
height: 90%;
}
.main-body .section {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
}
.main-body .section2 {
flex: 2 0 0;
}
.main-body .section1,
.main-body .section3 {
margin: 5px;
padding: 0;
border: 1px solid #000000be;
border-radius: 62px;
background: linear-gradient(145deg, #000000e1, #000000be);
box-shadow: 33px 33px 77px #18161e, -33px -33px 77px #262230;
display: flex;
flex-direction: column;
}
/*footer-header styling*/
footer {
margin: 5px;
padding: 0;
border: 1px solid #000000be;
border-radius: 62px;
background: linear-gradient(145deg, #000000e1, #000000be);
box-shadow: 33px 33px 77px #18161e, -33px -33px 77px #262230;
display: flex;
justify-content: center;
}
footer div {
margin: 0;
padding: 0;
width: 70%;
display: flex;
justify-content: space-evenly;
align-items: center;
flex-wrap: wrap;
}
/*socila media styling */
.social-media p {
margin: 10px;
padding: 0;
}
.social-media .copyright {
font-size: 32px;
}
.social-media #find-us {
color: #778116;
font-size: 28px;
font-weight: bolder;
}
.social-media .instagram {
background-image: url(img/2.png);
height: 45px;
width: 52px;
}
.social-media .instagram:hover {
background-image: url(img/2hover.png);
height: 45px;
width: 52px;
}
.social-media .facebook {
background-image: url(img/3.png);
height: 45px;
width: 52px;
}
.social-media .facebook:hover {
background-image: url(img/3hover.png);
height: 45px;
width: 52px;
}
.social-media .youtube {
background-image: url(img/4.png);
height: 45px;
width: 52px;
}
.social-media .youtube:hover {
background-image: url(img/4hover.png);
height: 45px;
width: 52px;
}