-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
108 lines (93 loc) · 1.48 KB
/
style.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
*{
margin:0;
padding:0
}
.container{
width:100%;
height:100vh;
background-image:url(Images/background.png);
padding-left: 5%;
padding-right:5%;
box-sizing: border-box;
position:relative;
}
.navbar{
width:100%;
height:15vh;
display: flex;
margin: auto;
align-items:center
}
.logo{
width:160px;
cursor:pointer;
}
.cart{
width:40px;
cursor:pointer;
}
nav{
flex:1;
padding-left: 60px;
}
nav ul li{
display:inline-block;
list-style:none;
margin:0 20px;
}
nav ul li a{
text-decoration: none;
color:#333;
}
.content h1{
font-size:60px;
font-weight:100;
margin-top:24px;
margin-bottom: 15px;
color:#232d60;
}
.content p{
font-size:20px;
color:#6a7199;
}
.content{
margin-top: 10%;
margin-left: 10%;
}
.content .btn{
background: linear-gradient(45deg,#87adfe,#ff77cd);
display:inline-block;
border-radius: 6px;
padding:10px 20px;
box-sizing: border-box;
text-decoration: none;
color:#fff;
box-shadow:3px 8px 22px rgb(94, 28, 68);
}
.arrow-icons
{
margin-top:40px;
display: flex;
}
.arrow-icons img{
width:40px;
margin-right: 25px;
}
.main-image{
height: 90%;
position: absolute;
bottom: 0;
right: 160px;
}
.socials{
transform: rotate(-90deg);
position: absolute;
left: -80px;
bottom:180px;
}
.socials a{
text-decoration: none;
color: #6a7199;
padding-right: 20px;
font-size:14px
}