-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
113 lines (87 loc) · 1.92 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
html{
padding: 0;
margin: 0;
}
/* navbar css starts here */
.navbar-brand{
font-family: 'Times New Roman';
font-size: 1.5rem;
color: rgb(14, 15, 15) !important;
}
.nav-link{
margin: 5px;
color: rgb(30, 34, 30)!important;
font-family: 'Times New Roman', Times, serif;
}
.nav-link:hover{
border-radius: 0.5rem;
background-color: #ebfb71;
}
/* navbar css ends here */
/* hero content css starts here */
.hero-content{
height: 90vh;
background-color: #659092;
color: #ffffff;
padding: 7rem;
}
.hero-img{
height: 40vh;
width: 60%;
}
@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: #ebfb71;
}
/* hero content css ends 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-buttons css end here*/
/* footer css starts here */
footer{
/* background-color: #f2e9e4; */
background-color: rgb(149, 205, 205);
justify-content: center;
}
.social-icons li{
display: inline;
padding: 0.5rem;
}
.github{
color: #24292e;
}
.linkedin{
color: #0077b5;
}
/* footer css ends here */