-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
81 lines (65 loc) · 1.01 KB
/
main.css
File metadata and controls
81 lines (65 loc) · 1.01 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
.navbar{
position: relative;
width: 100%;
z-index: 5;
}
.navbar-brand{
font-size: 30px;
transition: all ease-in-out 0.1s;
}
.login-container{
width: 100%;
height: 300px;
background-color: lightgray ;
position: relative;
}
.login-area{
position: absolute;
margin-top: 125px;
}
.list-group{
display: none ;
}
.show{
display: block ;
}
.black-bg {
width : 100%;
height : 100%;
position : fixed;
background : rgba(0,0,0,0.5);
z-index : 5;
padding: 30px;
visibility: hidden;
opacity: 0;
height: 0%;
transition: all 0.5s;
}
.login{
z-index: 6;
visibility: visible;
height: 400px;
opacity: 1;
}
.white-bg {
background: white;
border-radius: 5px;
padding: 30px;
}
.slide-container{
width: 300vw;
transform : translateX(0vw);
}
.slide-box{
width: 100vw;
float: left;
}
.slide-box img{
width: 100%;
}
.lorem-line{
height: 5px;
}
.form-hide{
display: none;
}