-
Notifications
You must be signed in to change notification settings - Fork 0
/
landingPage.css
99 lines (84 loc) · 1.61 KB
/
landingPage.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
*{
padding: 0;
margin: 0;
text-decoration: none;
list-style: none;
box-sizing: border-box;
}
body{
font-family: 'mukta';
background-image: linear-gradient(to right, #54a5f2, #4e95fd, #6382ff, #8667fd, #ac3eee);
}
nav{
height: 10vh;
width: 100%;
}
img.logo{
height: 3.5em;
width: 12.25em;
margin-left: 5vw;
margin-top: 1.25vh;
}
nav ul{
float: right;
margin-right: 5vw;
}
nav ul li{
display: inline-block;
line-height: 10vh;
margin: 0 1vw;
}
a.sign-in-button{
background-color: #fafafa;
padding: 1vh 1.2vw;
font-size: 2.5vh;
border-radius: 22px;
color: #323035;
font-weight: bold;
text-decoration: none;
}
div.get-started-chunk{
margin-top: 20vh;
margin-left: 15vw;
width: 30vw;
}
.tagline{
color: #fafafa;
line-height: 1.3em;
text-decoration: none;
}
h1.top-tagline{
font-size: 9vh;
}
p.bottom-tagline{
margin-bottom: 3vh;
font-size: 5vh;
}
a.get-started-button{
background-color: #fafafa;
padding: 1.2vh 1.2vw;
justify-content: center;
font-size: 2.5vh;
border-radius: 22px;
color: #323035;
font-weight: bold;
text-decoration: none;
}
a.get-started-button:hover, a.sign-in-button:hover{
background-color: #dbd9e0;
transition: 0.3s;
}
a.get-started-button:active, a.sign-in-button:active{
background-color: #dbd9e0;
transition: 0.3s;
}
img.icon{
height: 45vh;
width: 24vw;
position: absolute;
right: 15vw;
top: 25vh;
}
/* font sizes formatted √
/* colours formatted √
/* naming convention and order of code formatted √