-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
51 lines (50 loc) · 883 Bytes
/
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
.container{
height: 100vh;
width:100%;
background: url(media/image.png);
background-size: cover;
background-position: center;
position: relative;
}
.navbar{
display: flex;
width: 88%;
margin:auto;
padding: 15px;
align-items: center;
justify-content: space-between;
}
.logo{
width:140px;
height: 100px;
}
.nav li a{
padding: 10px;
text-decoration: none;
}
.nav li{
display: inline-block;
margin:0 15px;
}
.content{
display: flex;
justify-content: space-between;
width:100%;
position: absolute;
top: 50%;
color: white;
margin-left: 30px;
font-size: large;
}
.rightcol{
padding-right: 20%;
}
.rightcol p{
padding-left: 15%;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.rightcol img{
width:90px;
height:70px;
cursor: pointer;
}