-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlandingpagestyle.css
More file actions
97 lines (79 loc) · 1.3 KB
/
landingpagestyle.css
File metadata and controls
97 lines (79 loc) · 1.3 KB
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family:monospace;
font-size: 18px;
color: black;
width: 100%;
height: 100vh;
position: relative;
overflow: hidden;
background-color: #EAFFFD;
}
.name{
font-family:monospace;
font-size: 40px;
color: #001242;
}
a{
color: #000;
text-decoration: none;
display: inline-block;
transition: .5s;
font-size: 20px;
}
ul,li{
list-style-type: none;
}
header{
display: flex;
justify-content: space-between;
align-items: center;
background-color: #C9F0FF;
}
nav ul{
display: flex;
zoom: 90%;
}
nav ul li {
margin-left: 100px;
text-align: center;
}
nav ul li a:hover{
color: #2988D7;
}
.banner{
display: flex;
justify-content: space-between;
align-items: center;
padding: 50px;
}
.banner-text h1{
font-family:monospace;
font-size: 88px;
margin-bottom: 20px;
color: #001242;
}
.btn{
background-color: #347FC4;
padding: 8px 30px;
border-radius: 50px;
margin-top: 30px;
color: #fff;
}
.btn:hover{
background-color: #dc3f18;
}
.btn2{
background-color: #347FC4;
padding: 10px 30px;
margin-right: 10px;
border-radius: 1000px;
color: #fff;
}
.btn2:hover{
background-color: #dc3f18;
}