-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
122 lines (105 loc) · 1.9 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
112
113
114
115
116
117
118
119
120
121
122
*{
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
background-color: #2B3467;
}
.hero{
position: absolute;
width: 100%;
height: 100vh;
}
.logo{
width: 20%;
height:20%;
}
nav{
display: flex;
width: 84%;
margin: auto;
padding: 20px 0;
align-items: centre;
justify-content: space-between;
}
nav ul li{
display: inline-block;
list-style: none;
margin: 10px 20px;
}
.underline{
text-decoration: none;
color: #BAD7E9;
position: relative;
cursor: pointer;
}
.underline:after{
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
color: #EB455F;
background-color: #EB455F;
transition: width 0.4s ease-in-out;
}
.underline:hover:after {
width: 100%;
}
.underline:hover{
color: #EB455F;
transition: ease-in-out;
}
.detel{
margin-left: 8%;
margin-top: 6%;
color: #BAD7E9;
}
h1{
font-size: 65px;
}
span{
color: #EB455F;
font-weight: bold;
display: inline-block;
margin: 10px 0;
border-radius: 5px;
}
p{
color: #FCFFE7;
font-size: 25px;
margin-bottom: 2%;
}
.detel a{
background: #BAD7E9;
padding: 10px 18px;
text-decoration: none;
font-weight: bold;
color: #2B3467;
border-radius: 5px;
}
.images{
width: 35%;
height: 70%;
position: absolute;
bottom: 0;
right: 105px;
bottom: 5px;
margin-bottom: 3%;
}
.images img{
height: 105%;
position: absolute;
left: 8%;
bottom: 0;
border-radius: 50%;
}
footer{
text-decoration: underline;
text-decoration-color: #BAD7E9;
text-decoration-thickness: 2px;
color: #BAD7E9;
font-size: 35px;
font-family: Arial, Helvetica, sans-serif;
margin-top: 11.5%;
}