-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.css
More file actions
153 lines (138 loc) · 2.8 KB
/
Copy pathadmin.css
File metadata and controls
153 lines (138 loc) · 2.8 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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
*{
margin: 0;
padding: 0;
font-family: 'Noto Sans', sans-serif;
}
body{
height: 100vh;
background-image: url('wallpaperflare.com_wallpaper.png');
background-size: cover;
backdrop-filter: blur(5px);
}
nav {
width: 100%;
height: 50px;
background-color: aliceblue;
}
ul li {
/* buang dot */
list-style: none;
display: inline-block;
line-height: 50px;
}
ul li a {
/* ni buat option tu jadi block */
display: block;
/* buang underline */
text-decoration: none;
font-size: 14px;
font-family:'Lucida Sans';
color: #112B3C;
/* ni buat spacing */
padding: 0 20px;
}
ul li a:hover {
color: #00ADB5 ;
}
.intro p{
font-family: 'Noto Sans', sans-serif;
font-size: xx-large;
margin-top: 3%;
margin-left: 1%;
}
#container{
width: 350px;
height: 500px;
background: inherit;
position: absolute;
overflow: hidden;
top: 50%;
left: 50%;
margin-left: -175px;
margin-top: -250px;
border-radius: 8px;
border: 0;
}
#container:before{
width: 400px;
height: 550px;
content: "";
position: absolute;
top: -25px;
left: -25px;
bottom: 0;
right: 0;
background: inherit;
box-shadow: inset 0 0 0 200px rgba(255,255,255,0.2);
filter: blur(10px);
}
form img{
width: 120px;
height: 120px;
border-radius: 100%;
}
form{
text-align: center;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
}
input{
background: 0;
width: 200px;
outline: 0;
border: 0;
border-bottom: 2px solid rgba(255,255,255, 0.3);
margin: 20px 0;
padding-bottom: 10px;
font-size: 18px;
font-weight: bold;
color: rgba(255,255,255, 0.3);
}
input[type="submit"]{
border: 0;
border-radius: 8px;
padding-bottom: 0;
height: 60px;
background: #243A73;
color : white;
cursor: pointer;
transition: all 600ms ease-in-out;
}
input[type="text"], input[type="password"]{
font-size: small;
color: black;
}
input[type="submit"]:hover{
background: #BDF2D5;
}
h2{
font-family: 'Noto Sans', sans-serif;
font-size: xx-large;
margin-bottom: 60px;
text-align: center;
}
h1{
font-family: 'Noto Sans', sans-serif;
font-size: xx-large;
margin-top: 50px;
text-align: center;
}
table {
margin-left: auto;
margin-right: auto;
margin-top: 20%;
border: 2px solid;
border-collapse: collapse;
padding: 15px;
}
.delete {
font-size: large;
}
td{
width: 20%;
padding: 15px;
text-align: center;
}
/*tengah buat admin view user*/