-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (107 loc) · 1.9 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
*{
margin: 0;
padding: 0;
}
.main{
width: 100%;
background: url(bg.jpg);
background-position: center;
background-size: cover;
height: 100vh;
position: relative;
font-family: sans-serif;
}
.navbar{
width: 86%;
display: flex;
margin: auto;
padding: 15px 0;
align-items: center;
justify-content: space-between;
}
.navbar .logo{
width: 160px;
cursor: pointer;
margin-top: -3%;
margin-left: -2%;
}
ul{
margin-top: -4%;
}
ul li{
list-style: none;
display: inline-block;
padding: 10px 16px;
}
ul li a{
font-size: 16px;
font-weight: bold;
text-decoration: none;
color: darkslategray;
margin-top: -3%;
transition: .4s ease;
}
ul li a:hover{
color: rgb(230,104,59);
}
.info{
margin-left: 7%;
margin-top: 6%;
}
.info h1{
font-size: 65px;
color: rgb(36,32,30);
}
.info h3{
font-size: 18px;
letter-spacing: 1px;
line-height: 24px;
}
.info span{
color: rgb(230,104,59);
}
.info a{
text-decoration: none;
color: #fff;
background: rgb(36,32,30);
margin: 26px 0;
padding: 10px 18px;
border-radius: 10px;
display: inline-block;
transition: .4s ease;
}
.info a:hover{
background: rgb(59,174,209);
}
.image{
width: 30%;
height: 60%;
position: absolute;
right: 100px;
bottom: 0;
}
.image img{
position: absolute;
height: 140%;
left: 40%;
transform: translate(-55%);
bottom: 0;
transition: left 2s ease;
}
.image:hover .girl{
left: 55%;
}
.icons a{
text-decoration: none;
color: #000;
}
.icons ion-icon{
margin-left: 7%;
color: #000;
margin-right: -60px;
font-size: 40px;
transition: .4s ease;
}
.icons ion-icon:hover{
color: rgb(59,174,209);
}