-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (89 loc) · 1.37 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
*{
margin: 0;
padding: 0;
}
body{
font-family: 'Poppins', sans-serif;
color: white;
background-color: rgb(0, 0, 33);
}
/*<------header----->*/
nav{
display: flex;
justify-content: space-around;
align-items: center;
height: 80px;
background-color: rgb(18, 18, 62);
}
nav ul {
display: flex;
justify-content: center;
}
nav ul li {
list-style: none;
margin: 0 25px;
}
nav ul a{
text-decoration: none;
color: white;
}
nav ul a:hover{
color: purple;
font-size: 1.05rem;
}
/*<------header----->*/
/*<------firstsection----->*/
.left{
font-size: 1.5rem;
}
.firstsection{
display: flex;
justify-content: space-around;
margin: ;
}
.firstsection > div{
width: 30%;
}
.leftsection{
font-size: 3rem;
margin: 100px;
}
/*<------firstsection----->*/
/*<------Secondsection----->*/
.secondsection{
max-width: 80vw;
margin: auto;
height: 80vh;
}
.secondsection .box{
background: white;
width: 80vw;
height: 2px;
margin: 100px 0;
display: flex;
}
.secondsection .vertical{
height: 90px;
width: 1px;
background-color: white;
margin: 0 100px;
}
.vertical-title{
position: relative;
top: 23px;
left: -25px;
width: 150px;
}
.vertical-desc{
position: relative;
top: 35px;
left: -26px;
color: gray;
font-size: 11px;
width: 150px;
}
.secondsection > .box > .vertical > img:hover{
transform: scale(1.3);
filter: grayscale(0%);
}
/*<------Secondsection----->*/