-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathadmin.css
89 lines (79 loc) · 1.48 KB
/
admin.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
@import url("https://fonts.googleapis.com/css2?family=Google+Sans&display=swap");
* {
text-align: center;
font-family: "Google Sans", cursive;
}
body {
background: #ffffff;
/* display: flex;
align-items: center;
justify-content: center; */
}
#box {
background-color: rgb(255, 226, 230);
box-shadow: 12px 12px 22px rgba(0, 0, 0, 0.1);
border-radius: 30px;
width: 90vh;
height: 100%;
margin: 20px 0px;
}
h2 {
padding-top: 20px;
}
.container-btn {
display: flex;
flex-wrap: wrap;
justify-content: center;
/* padding-top: 20px;
padding-bottom: 20px; */
padding: 20px 20px;
}
input.input1 {
text-align: left;
}
.input1 {
outline: none;
border: none;
width: 50%;
height: 50px;
border-radius: 25px;
padding: 0 30px;
}
/*---------------BUTTON---------------*/
.btn {
width: 30%;
height: 40px;
border-radius: 4px;
background-color: black;
color: #ffffff;
outline: none;
border: none;
font-size: 16px;
}
button.btn {
margin: 10px 30px 10px 10px;
}
.btn:hover {
background-color: white;
border: 1px solid black;
}
input {
margin-bottom: 20px; /* space between input box */
}
.btn2 {
width: 20%;
height: 40px;
border-radius: 4px;
background-color: black;
color: #ffffff;
outline: none;
border: none;
font-size: 16px;
}
button.btn2 {
margin: 10px 30px 10px 10px;
}
.btn2:hover {
background-color: white;
border: 1px solid black;
}