-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
137 lines (115 loc) · 2.49 KB
/
style.css
File metadata and controls
137 lines (115 loc) · 2.49 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
html{
padding: 0;
margin: 0;
}
body{
font-family: 'Roboto', sans-serif;
background-color:yellow;
}
/* splash screen css starts here */
#loading{
position: fixed;
width: 100%;
height: 100vh;
background: #e4eff2 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: #f2e9e4!important;
}
.navbar-brand{
font-family: 'Sansita Swashed', cursive;
font-size: 1.5rem;
color: #dfab1d!important;
}
.nav-link{
color: #e7890f!important;
font-family: 'Noto Sans JP', sans-serif;
}
.nav-link:hover{
background-color: #e7d3d3;
}
/* navbar css ends here */
/* here content css starts here */
.hero-content{
height: 100vh;
background-color:crimson;
color:white;
padding: 3rem;
border-bottom-left-radius: 45rem;
border-bottom-right-radius: 45rem;
margin-bottom: 1vh;
}
.hero-img{
height: 90vh;
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:black;
color: white!important;
transition: 0.3s;
}
.get-started:hover{
text-decoration: none;
background-color: #1aa1eb;
}
/* here content css starts here */
/* get-started-buttons css starts here*/
.get-started-content{
height: 60vh;
background-color: #ff8a65;
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: #f2e9e4;
}
.social-icons li{
list-style: none;
display: inline;
padding: 0.5rem;
}
.github{
color: #24292e;
}
.linkedin{
color: #0077b5;
}
.google{
color: #D44638;
}
/* footer css ends here */
.max-width {
max-width: 1300px;
padding: 0 80px;
margin: auto;
}