-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
132 lines (121 loc) · 2.8 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
123
124
125
126
127
128
129
130
131
132
html {
height: 100%;
width: 100%;
}
.username{
margin-top: 23px;
margin-bottom: 23px;
}
.password{
margin-bottom: 23px;
}
#k{
border-radius: 17px;
width: 104px;
height: 36px;
background-color: #ff4cf6;
}
body{
background-color: #000000a8;
}
.container{
margin-left: 793px;
margin-top: 211px;
height: 306px;
border: 2px solid #e3b;
border-radius: 9px;
padding: 34px;
box-shadow: 9px 9px #e3b;
align-items: center;
margin-right: 205px;
display: flex;
width: 199px;
flex-direction: column;
}
.container:hover{
transform:translate(12px,12px);
}
input{
background-color: #7effe5;
}
h2{
color: white;
}
.text{
color: white;
}
.container:hover{
box-shadow: none;
}
#k:hover{
background-color: #7effe5;
color: black;
}
.menu{
position: fixed;
background-color: #1ed1fffa;
height: 611px;
width: 246px;
margin: -7px;
padding: 45px;
margin-top: -209px;
list-style: none;
line-height: 7;
text-decoration: none;
}
/* The sidebar menu */
.sidebar {
height: 100%; /* 100% Full-height */
width: 0; /* 0 width - change this with JavaScript */
position: fixed; /* Stay in place */
z-index: 1; /* Stay on top */
top: 0;
left: 0;
background-color: #111; /* Black*/
overflow-x: hidden; /* Disable horizontal scroll */
padding-top: 60px; /* Place content 60px from the top */
transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */
}
/* The sidebar links */
.sidebar a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
}
/* When you mouse over the navigation links, change their color */
.sidebar a:hover {
color: #f1f1f1;
}
/* Position and style the close button (top right corner) */
.sidebar .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
/* The button used to open the sidebar */
.openbtn {
font-size: 20px;
cursor: pointer;
background-color: #111;
color: white;
padding: 10px 15px;
border: none;
}
.openbtn:hover {
background-color: #444;
}
/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
transition: margin-left .5s; /* If you want a transition effect */
padding: 20px;
}
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
.sidebar {padding-top: 15px;}
.sidebar a {font-size: 18px;}
}