-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (113 loc) · 1.92 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
h1,h2,h3{
margin: 0 !important;
}
body{
overflow: hidden;
}
.content{
padding: 1.5em;
max-height: 100vh;
overflow: auto;
}
.bg-pi{
background: #D21F3C;
color: white;
}
.btn-pi{
background: #D21F3C;
color: white;
width: 100%;
}
.btn-nav{
width: 100%;
background: transparent !important;
color: white;
}
.hide{
display: none;
}
.hide-home{
display: none;
}
.btn:hover, .btn-large:hover, .btn-small:hover{
background: #D21F3C;
}
.show-notif{
bottom: 0 !important;
}
.notification{
position: fixed;
bottom: -100px;
left: 30vw;
right: 30vw;
color: white;
border: 2px solid black;
border-radius: 20px;
transition: all 0.4s ease-in-out;
z-index: 1001;
font-weight: bold;
}
.header-notif{
border-radius: 20px 20px 0 0;
padding: 0.5rem;
}
.notif-success{
background: green;
}
.notif-error{
background: red;
}
.content-notif{
background: white;
color: black;
padding: 0.5rem;
border-radius: 20px;
}
@media screen and (min-width: 993px) and (max-width:2200px){
.left-nav{
height: 100vh !important;
}
.icon-nav{
display: none;
}
.log-form{
position: fixed;
top: 20vh;
max-width: 40vw;
}
}
@media screen and (max-width: 992px) and (min-width: 50px){
.left-nav{
position: fixed;
margin-left: -600px !important;
height: 100vh;
transition: all 0.3s ease-in-out;
}
.show-nav{
margin-left: 0 !important;
z-index: 999;
width: 100vw !important;
}
.icon-nav{
display: block;
position: fixed;
top: 2vh;
left: 1vw;
background: #D21F3C;
color: white;
z-index: 1000;
}
}
.btn{
height: auto !important;
}
.btn i{
font-size: none !important;
}
.btn-action{
padding: 1rem;
width: 100%;
}
.fa-3x{
font-size: 3em !important;
}