-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
83 lines (72 loc) · 1.4 KB
/
Copy pathstyles.css
File metadata and controls
83 lines (72 loc) · 1.4 KB
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
body{
padding: 0;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
/**Logo**/
.content-logo{
position: fixed;
width: 100%;
top: 0;
left: 0;
z-index: 500;
background-color: rgba(83, 145, 216, 0.938);
height: 70px;
}
.content-logo img.left{
height: 55px;
width: 20%;
border-radius: 25px;
margin-left: 10px;
margin-top: 10px;
}
/**Navigations**/
.content-nav{
position: fixed;
top: 70px;
width: 100%;
height: 80px;
z-index: 500;
background-color: rgba(27, 114, 214, 0.938);
}
.content-nav a{
display: block;
float: left;
width: 28%;
padding-top: 34px;
padding-left: 54px;
color: antiquewhite;
text-align: center;
text-decoration: none;
font-weight: 500;
}
/**Content Body**/
.bg-pic{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('Images/Background-pic.jpg');
background-size: cover;
background-position: center;
background-repeat: repeat-y;
filter: blur(3px);
z-index: -1;
}
.content-body{
margin-top: 150px;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
z-index: 1;
}
.content-body iframe.facebook-iframe{
max-width: 50%;
border-radius: 15px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
height: 500px;
margin: auto;
}