-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.css
82 lines (82 loc) · 1.26 KB
/
Main.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
body
{
margin:0px;
background-color:rgba(34,40,59,1);
}
#main{
height:100vh;
width:100%;
position:absolute;
overflow:hidden;
}
#backtext{
font-family:Impact;
font-size:15em;
color:rgba(54,61,75,1);
position: absolute;
top:100px;
left:100px;
z-index:-1;
}
.box{
position:absolute;
top:50%;
left:35%;
transform: translate(-50%,-50%);
}
.title{
font-family: Impact;
font-size:8em;
color:whitesmoke;
position:absolute;
margin-top:50px;
margin-left:350px;
line-height: 120px;
letter-spacing: 5px;
}
.image{
height: 450px;
width:600px;
box-shadow: 10px 10px 20px 10px rgba(0,0,0,.3);
}
.image img{
height: 100%;
width:100%;
}
.description{
width:200px;
font-family: arial;
font-size:13px;
color:whitesmoke;
text-align:justify;
line-height: 20px;
position:absolute;
margin-left:620px;
margin-top:-120px;
}
.box2{
left:100%;
}
.box3{
left:165%;
}
.navigation{
position:absolute;
bottom:50px;
left:50%;
transform: translateX(-50%);
}
.navigation ul{
list-style: none;
}
.navigation ul li{
display:inline-block;
height: 13px;
width: 13px;
background-color:whitesmoke;
border-radius: 50%;
margin:0px 5px 0px 5px;
}
.active{
box-shadow: 0px 0px 0px 3px rgba(34,40,59,1), 0px 0px 0px 4px whitesmoke;
}