-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
117 lines (96 loc) · 2.11 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
html{
padding: 0;
margin: 0;
}
body{
font-family: 'Roboto', sans-serif;
background-color: #f3355e;
}
/* splash screen css starts here */
#loading{
position: fixed;
width: 100%;
height: 100vh;
background: #38a9c9 url("https://media.giphy.com/media/xTk9ZvMnbIiIew7IpW/giphy.gif") no-repeat center center;
z-index: 99999;
}
/* splash screen css ends here */
/* navbar css starts here */
.bg-light{
background-color: #355070!important;
}
.navbar-brand{
font-family: 'Sansita Swashed', cursive;
font-size: 1.5rem;
color: #eaf0f7!important;
}
.nav-link{
color: #eff6ff!important;
font-family: 'Noto Sans JP', sans-serif;
}
.nav-link:hover{
background-color: #8bdbd7;
}
/* navbar css ends here */
/* here content css starts here */
.hero-content{
height: 100vh;
background-color: #355070;
color: #ffffff;
padding: 3rem;
border-bottom-left-radius: 45rem;
border-bottom-right-radius: 45rem;
margin-bottom: 1vh;
}
.hero-img{
height: 70vh;
width: 100%;
}
@media only screen and (max-width: 766px) {
.hero-img {
display: none;
}
}
.get-started{
border-radius: 0.5rem;
padding: 1rem 2rem;
font-size: 162%;
background-color: #fff;
color: #039be5!important;
transition: 0.3s;
}
.get-started:hover{
text-decoration: none;
background-color: #bfdff0;
}
/* here content css starts here */
/* get-started-buttons css starts here*/
.get-started-content{
height: 60vh;
background-color: #86fbff;
border-top-left-radius: 42rem;
border-top-right-radius: 42rem;
border-bottom-right-radius: 42rem;
border-bottom-left-radius: 42rem;
}
.get-started-content .row{
padding: 25vh 0;
}
.get-started-content a{
border-radius: 0.5rem;
padding: 1rem 2rem;
font-size: 162%;
background-color: #039be5;
color: #fff!important;
transition: 0.3s;
}
.get-started-content a:hover{
background-color: #017ab6;
text-decoration: none;
}
/* get-started-buttons css end here*/
/* footer css starts here */
footer{
background-color: #f3355e;
}
/* footer css ends here */