-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
150 lines (149 loc) · 2.36 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,500,600,700,800&display=swap');
*{
margin:0;
padding:0;
font-family: 'Josefin Sans';
}
img.sticky{
position: fixed;
-webkit-transform: rotate(540deg);
float:right;
border:2px solid black;
z-index: 1;
}
body{
background-image: url('./bg.png');
background-size: 100% 100%;
background-repeat: no-repeat;
overflow-x: hidden;
overflow-y: scroll;
}
html{
scroll-behaviour:smooth;
}
.navbar-default .navbar-brand {
height:60px;
padding:12px 8px;
}
.navbar-default .navbar-nav > li > a:hover{
color: orange !important;
border-bottom:2px solid orange;
}
.navbar-default .navbar-nav > li > a{
color: black !important;
font-size:15px;
}
main .free img{
width:100%;
margin-top: -70px;
}
main
{
width: 100%;
display: flex;
letter-spacing: 1px;
padding: 4%;
align-items: center;
margin-top: 45px;
}
main .left
{
padding-left: 5%;
}
.left h2
{
font-size: 35px;
text-transform: capitalize;
color: #555;
}
main .left img{
float: right;
width:30%;
margin-top: -70px;
}
.left .tag
{
color: crimson;
text-shadow: 1.5px 1.5px 1.5px #004;
}
footer{
font-size:18px;
font-weight: 900;
color:black;
text-shadow: 1.5px 1.5px 1.5px grey;
}
@media only screen and (max-width: 960px)
{
.navbar-default .navbar-brand {
height:45px;
padding:10px 8px;
}
.left h2{
font-size: 25px;
}
main{
margin-top: 40px;
margin-left:2%;
}
main .left img{
margin-top:1%;
width:35%;
}
main .card{
margin-left:5%;
display:flex !important;
flex-direction:horizontal;
margin-bottom:20px;
box-shadow:1.5px 1.5px 1.8px grey;
}
main .card img{
width:70px !important;
}
main .card .card-block .card-text{
padding:5px;
}
.left h3{
font-size:18px;
font-weight: 500;
}
.working img{
width:50px !important;
}
.fa-3x{
font-size:1em;
}
.working p{
margin-top:10px;
font-size:13px;
}
.working .row{
display:flex !important;
flex-direction: horizontal;
}
main table{
margin-left:2% !important;
}
main .free img{
width:50% !important;
margin-left:20%;
}
main .jee{
display:flex;
flex-direction: horizontal;
}
main .jee img{
width:200px !important;
}
main .neet{
display:flex;
flex-direction: horizontal;
}
main .neet img{
width:200px !important;
}
footer{
font-size:15px;
font-weight: 700;
text-shadow: 1.2px 1.2px 1.2px grey;
}
}