-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (79 loc) · 1.18 KB
/
style.css
File metadata and controls
86 lines (79 loc) · 1.18 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
84
85
*{
margin: 0;
padding: 0;
}
.container{
width: 90%;
margin: 0 auto
}
.class {
font-family: Calibri,'Droid Sans','san-serif';
}
.navbar {
width:100%;
overflow: hidden;
height: 50px;
line-height: 50px;
background: #fff;
font-size:20px;
border-bottom: 2px solid black;
}
.logo{
width: 90px;
float:left;
}
/* this is for ul tag */
.menu{
float:right;
}
.menu li{
float:left;
width:120px;
height: 50px;
line-height: 50px;
text-align: center;
list-style: none;
}
.menu li a{
color: #000;
text-decoration: none;
font-family: Calibri, 'Droid Sans', 'san-serif';
text-transform: uppercase;
display:block;
}
.menu li:hover{
background: #dc3545
}
.menu li a:hover{
color: #fff
}
#myVideo {
position: fixed;
z-index: -1;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
filter: brightness(25%);
}
.gallery {
margin: 5px;
border: 1px solid #ccc;
float: left;
width: 360px;
}
.gallery:hover {
border: 1px solid #777;
}
.gallery img {
width: 100%;
height: auto;
}
.desc {
padding: 15px;
text-align: left;
font-family: Calibri, 'Droid Sans', 'sans-serif';
}
.body {
font-family: Calibri,'Droid Sans', 'sans-serif';
}