-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.css
90 lines (75 loc) · 1.31 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
/* Styling Navigation Bar */
nav{
display:flex;
justify-content: space-between;
align-items: center;
}
.navBar{
text-align: right;
flex:1;
background-color:rgb(240, 165, 104);
}
.navBar ul li{
list-style: none;
display: inline-block;
padding: 8px 12px;
}
.navBar ul li a{
color:black;
text-decoration: none;
font-size: 25px;
font-weight: 100;
}
/* Div class for the video */
.entry{
padding: 0;
height: 500px;;
width:500px;
overflow:hidden;
display:flex;
justify-content:center;
align-items: center;
}
body{
margin:0;
padding: 0;
}
/* Style the video */
.entry video{
position:absolute;
left: 0;
pointer-events:none;
height:1200px;
width: 1200px;
margin-top: 87px;
padding-top: 110px;
margin-right: 100px;
padding: 100px;
}
.welcome{
padding:140px;
margin: auto;
position: relative;
font-size: 40px;
font-style: italic;
}
.welcome h1{
text-align: center;
}
body{
background-color:white;
}
/* Reduce the image size to fit the nav bar */
.logo{
width:55px;
margin-right: 850px;
}
.footer{
height:80px;
background-color:rgb(240, 165, 104) ;
text-align: center;
}
/* Styling the icons */
.fa{
padding:20px;
}