forked from anasjawed283/Open-For-All
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasic_Home_Page.css
More file actions
73 lines (70 loc) · 1.46 KB
/
Basic_Home_Page.css
File metadata and controls
73 lines (70 loc) · 1.46 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
*{
margin: 0;
padding: 0;
}
.banner-area{
background-image: url('https://images.unsplash.com/photo-1494500764479-0c8f2919a3d8?crop=entropy&cs=srgb&fm=jpg&ixid=MnwxNDU4OXwwfDF8cmFuZG9tfHx8fHx8fHx8MTYzNzU5MjE4OA&ixlib=rb-1.2.1&q=85');
background-position: center center;
background-size:cover ;
/* -webkit-background-size:cover ; */
height: 100vh;
width: auto;
margin: auto;
}
.menu{
float: right;
list-style: none;
margin-top:30px;
}
.menu ul li{
display: inline-block;
}
.menu ul li a{
color: #fff;
text-decoration: none;
padding: 5px 20px;
font-family: 'poppins' ,sans-serif;
font-size: 16px;
}
.menu ul li a:hover{
color: rgb(199, 139, 255);
}
/* .logo{
height: 20%;
float: left;
color: azure;
list-style: none;
} */
.banner-text{
position: absolute;
width: 600px;
height: 300px;
margin: 20% 30%;
text-align: center;
}
.banner-text h1{
text-align: center;
color:rgb(233, 185, 255);
text-transform: uppercase;
font-size: 60px;
font-family: 'poppins' , sans-serif;
}
.banner-text p{
color: #fff;
font-size: 18px;
}
.banner-text a{
border: 1px solid #fff;
padding: 10px 25px;
text-decoration: none;
text-transform: uppercase;
font-size: 14px;
margin-top: 20px;
display: inline-block;
color: #fff;
}
.banner-text a:hover{
background-color: white;
color: rgba(68, 25, 109, 0.623);
font-weight: bold;
}