-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (92 loc) · 1.69 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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Lexend+Deca&display=swap');
*{
margin:0;
padding:0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
font-family: 'Lexend Deca', sans-serif;
}
body{
position: relative;
background-color: white;
overflow-y: hidden;
}
.hero{
width: 100%;
height: 100vh;
background-color: white;
}
.header{
color:black;
font-size: 30px;
margin-top: 20px;
}
header{
display: flex;
text-align: center;
justify-content:space-around;
font-size: 15px;
}
main{
height: 100vh;
display: flex;
}
header ul li {
margin-top: 30px;
display: inline-block;
list-style: none;
margin-right: 25px;
}
header li a:hover{
color: grey;
transition: .3s;
}
.login-register li{
text-decoration: none;
list-style: none;
display:inline-block;
margin-top: 30px;
margin-right: 25px;
}
header a{
text-decoration: none;
color:black;
}
.btn{
border:2px solid grey;
border-radius:30px;
padding:15px;
}
.btn:hover{
color:grey;
transition: .3s;
}
.section1{
margin-left:150px;
margin-top:200px;
display: inline-block;
width: 49%;
}
.section2{
display: inline-block;
width: 55%;
}
.make_remote_work{
font-size: 60px;
}
.paragraph{
width: 80%;
margin-top: 30px;
}
.btn1{
border:2px solid black;
border-radius:10px;
padding:15px;
background-color: black;
color: white;
margin-top: 50px;
text-decoration: none;
}
.image-section-2{
width: 72%;
}