-
Notifications
You must be signed in to change notification settings - Fork 1
/
qna.css
77 lines (72 loc) · 1.26 KB
/
qna.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
*{
margin: 0;
padding: 0;
color: #f2f5f7;
font-family: sans-serif;
letter-spacing: 1px;
font-weight: 300;
}
body{
overflow-x: hidden;
background-color: rgba(125, 125, 204, 0.404);
}
nav{
height: 6rem;
width: 100vw;
background-color: #131418;
box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
display: flex;
position: fixed;
z-index: 10;
}
/*Styling logo*/
.logo{
padding:0.6vh 1vw;
text-align: center;
}
.logo img{
height: 6rem;
width: 13rem;
}
.logo span{
color: red;
}
.fb-comments{
position:relative;
top:240px;
}
/*Stying for small screens*/
@media screen and (max-width: 800px){
nav{
position: fixed;
z-index: 3;
}
}
img {
vertical-align: middle;
width: 100%;
height: 400px;
}
.HH1{
position: relative;
top:130px;
font-size:30px;
font-weight: bolder;
color: rgba(19, 19, 31, 0.801);
text-align: center;
}
.HH1:hover{
position: relative;
top:130px;
font-size:35px;
font-weight: bolder;
color: green;
}
@media only screen and (max-width: 800px) {
.HH1{
font-size: 18px;
}
.HH1:hover{
font-size: 20px;
}
}