-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
82 lines (66 loc) · 1.24 KB
/
main.css
File metadata and controls
82 lines (66 loc) · 1.24 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
#searchBar {
margin-right: 100px;
}
#searchBar > input {
height: 28px;
}
.sticky-top{
padding-top: 15px;
color: white;
}
#sidenav {
height: 100%;
width: 325px;
position: fixed;
z-index: 1;
top: 0;
right: 0;
background-color: #111;
overflow-x: hidden;
margin-top: 65px;
}
body{
padding-top: 65px;
background-image: url('img/sokehs.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
/*margin-bottom: 30px;*/
}
.btn-circle {
margin-left: 12px;
width: 50px;
height: 50px;
padding: 6px 0px;
border-radius: 20px;
font-size: 20px; //controls personicon
text-align: center;
}
@media screen and (min-width: 800px) { /*The following CSS runs only for displays with a width (in pixels) of more than 800px*/
body {
font-size: 13px;
background-image: url('img/sokehs.jpg');
}
}
@media screen and (max-width: 990px) { /*The following CSS runs only for displays with a width (in pixels) of less than 800px*/
body {
/*font-size: 12px;*/
}
#sidenav {
visibility: collapse;
padding: 0px;
display: none;
}
}
.post-content{
font-size: 20px;
}
#spinner{
height: 10rem;
width: 10rem;
font-weight: bold;
visibility: visible;
color: red;
}
#reveal {
visibility: hidden;
}