-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
63 lines (60 loc) · 999 Bytes
/
styles.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
*{
margin : 0;
padding : 0;
box-sizing : border-box;
}
html,body{
width : 100%;
height : 100%;
}
body {
font-family: "Montserrat",Arial, sans-serif;
text-align: center;
}
#main{
height: 100vh;
width: 100%;
/* background-color: red; */
display: flex;
position: relative;
flex-direction: column;
justify-content: center;
align-items: center;
}
#main h1 {
font-size: 80px;
color: #333;
padding-bottom: 50px;
position: relative;
}
#main h1::before{
content:"College Library" ;
position: absolute;
top: -1%;
left: -1%;
z-index: -1;
color: #ccc;
}
video{
position: absolute;
z-index: -1;
object-fit: cover;
height: 100%;
width: 100%;
}
.book {
padding: 10px;
margin: 10px;
display: inline-block;
text-align: left;
width: 200px;
background-color: #ccc;
}
.book h2 {
font-size: 18px;
margin: 5px 0;
}
.book p {
font-size: 14px;
margin: 5px 0;
}