-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
123 lines (115 loc) · 2.27 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
118
119
120
121
122
123
.navigation,footer,main,body{
background-color: #0E2A47;
color:#fff;
}
.link-secondary{
color:#fff;
}
.nav-link{
color:#fff;
}
.navbar-nav{
color:#fff;
}
.hover{
color:#fff;
}
.hover:hover{
color:#fff;
border-bottom:1px solid red;
}
.herosection{
background:url('background5.svg');
background-size: cover;
background-repeat: no-repeat;
}
main{
min-height: 94vh;
}
html{
background:#141414;
/* background:url('background2.jpg'); */
}
body{
min-height: 100vh;
display: grid;
grid-template-rows: auto 1fr auto;
margin:0;
padding:0;
max-width:100vw;
margin:0 auto;
}
.hero{
margin-top:23vh;
margin-left:12vh;
}
.htmlpic{
background-image:
linear-gradient(to bottom, rgba(245, 246, 252, 0.52), rgba(117, 19, 93, 0.73)),
url('blog.jpg');
width: 100%;
height: 400px;
background-size: cover;
color: white;
padding: 20px;
}
.csspic{
background-image:
linear-gradient(to bottom, rgba(245, 246, 252, 0.52), rgba(221, 90, 14, 0.9)),
url('css.jpg');
width: 100%;
height: 400px;
background-size: cover;
color: white;
padding: 20px;
}
.jspic{
background-image:
linear-gradient(to top, rgba(245, 246, 252, 0.52), rgba(16, 13, 163, 0.6)),
url('js.jpg');
width: 100%;
height: 400px;
background-size: cover;
color: white;
padding: 20px;
}
.bootstrappic{
background-image:
linear-gradient(to bottom, rgba(245, 246, 252, 0.52), rgba(143, 172, 17, 0.9)),
url('bootstrap.jpg');
width: 100%;
height: 400px;
background-size: cover;
color:#673AB7;
padding: 20px ;
}
.learntext{
width:max-content;
padding:10px 20px;
margin:0 auto;
color:orangered;
}
#myBtn {
display: none;
position: fixed;
bottom: 20px;
right: 30px;
z-index: 99;
font-size: 18px;
border: none;
outline: none;
background-color: red;
color: white;
cursor: pointer;
padding: 15px;
border-radius: 4px;
}
#myBtn:hover {
background-color: #555;
}
@media screen and (max-width:800px) {
.hero{
margin-top:10vh;
margin-left:1vh;
}
}