-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles1.css
86 lines (72 loc) · 1.29 KB
/
styles1.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
*{
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
background-color: #2B3467;
}
.hero{
position: relative;
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: 3%;
margin-right: 8%;
font-size: 18px;
color: #FCFFE7;
margin-bottom: 20px;
font-size: 25px;
line-height: 29px;
}
p{
text-align: justify;
text-justify: inter-word;
}
.images img{
height: 110px;
width: 180px;
margin-left: 78%;
margin-top: 7%
}