forked from ricardomansano/minipost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminipost.css
81 lines (73 loc) · 1.34 KB
/
minipost.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
body {
font-family: "Lato", sans-serif;
}
img{
cursor: pointer;
}
img:hover{
border: red solid 1px;
}
.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: rgba(11, 11, 11, 0.9);
overflow-x: hidden;
transition: 0.5s;
padding-top: 50px;
}
.sidenav a {
padding-left: 18px;
text-decoration: none;
font-size: 25px;
color: #BDBDBD;
display: block;
transition: 0.3s
}
.sidenav a:hover, .offcanvas a:focus{
color: #fff;
background-color: rgba(00, 95, 255, 0.9);
}
.sidenav .closebtn {
position: absolute;
top: 0;
right: 0px;
width: 65px;
font-size: 36px;
margin-left: 25px;
}
@media screen and (max-height: 250px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 16px;}
}
#topAlert {
display: inline;
position: fixed;
height: 140px;
width: 100%;
color: #000;
z-index: 9999;
top: 0;
left: 0;
background-color: rgba(215, 186, 125, 0.9);
overflow-x: hidden;
transition: 0.5s;
padding: 10px;
}
#takePicture {
display: inline;
position: fixed;
height: 100%;
width: 100%;
color: #000;
z-index: 9999;
top: 0;
left: 0;
background-color: rgba(215, 186, 125, 0.9);
overflow-x: hidden;
transition: 0.5s;
padding: 10px;
}