-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
111 lines (109 loc) · 2.56 KB
/
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
*{
margin: 0;
padding: 0;
}
body {
height:90vh;
background: url(images/bg-desktop.svg) no-repeat left center fixed;
background-size: contain;
background-color: hsl(257, 40%, 49%);
position: relative;
overflow: hidden;
}
.logo {
margin: 50px 5px 50px 63px;
}
.bg {
display: inline-block;
}
.ill-img {
position:relative;
left: 230px;
top: 70px;
}
.main-text {
position: absolute;
left: 1000px;
bottom: 405px;
display: inline-block;
font-family: 'Open Sans', sans-serif;
font-weight: 400;
font-size: 1rem;
color: white;
padding-right: 150px;
}
h1 {
font-family: 'Poppins', sans-serif;
font-weight: 600;
font-size: 2rem;
color: white;
margin: 20px 0;
}
.btn{
margin-top: 30px;
padding: 10px 60px;
border: none;
border-radius:50px;
font-family: 'Poppins', sans-serif;
font-weight: 600;
font-size:1rem;
color:hsl(257, 40%, 49%);
box-shadow: 0 0 30px 0 black;
}
.btn:hover {
color:white;
background-color: hsl(300, 69%, 71%);
box-shadow: 0 0 30px 0 white;
}
.social-m {
float:right;
position:relative;
top: 720px;
right:300px;
}
.fb-logo,.tw-logo,.in-logo {
padding:10px;
color: white;
border: solid 1px white;
border-radius:100%;
margin-right: 5px;
}
.fb-logo {
padding:10px 12px;
}
.fb-logo:hover,.tw-logo:hover,.in-logo:hover {
padding:10px;
color: hsl(300, 69%, 71%);
border: solid 1px hsl(300, 69%, 71%);
border-radius:100%;
margin-right: 5px;
}
.fb-logo:hover {
padding:10px 12px;
}
@media (max-width: 1440px) {
.ill-img {
position:relative;
left: 70px;
top: 25px;
}
.main-text {
position: absolute;
left: 830px;
bottom: 250px;
display: inline-block;
font-family: 'Open Sans', sans-serif;
font-weight: 400;
font-size: 1rem;
color: white;
padding-right: 150px;
}
.social-m {
float:right;
position:relative;
top: 550px;
right:100px;
}
}