-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle_admin.css
96 lines (84 loc) · 1.53 KB
/
style_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
90
91
92
93
94
95
96
/*style_admin.css*/
body {
display: flex;
align-items: center;
justify-content: center;
font-family: sans-serif;
line-height: 1.5;
min-height: 100vh;
background-image: url('test.png');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
flex-direction: column;
margin: 0;
padding: 20px;
}
header {
text-align: center;
margin-bottom: 20px;
}
main {
max-width: 800px;
margin: 0 auto;
color: #ffffff;
}
.events-list {
list-style: none;
padding: 0;
}
.events-list li {
margin-bottom: 20px;
border: 1px solid #ddd;
padding: 10px;
}
.events-list li h3 {
margin-top: 0;
}
.main {
background-color: #fff;
border-radius: 15px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
padding: 10px 20px;
transition: transform 0.2s;
width: 500px;
text-align: center;
}
h1 {
color: #FF0000;
}
label {
display: block;
width: 100%;
margin-top: 10px;
margin-bottom: 5px;
text-align: left;
color: #555;
font-weight: bold;
}
input {
display: block;
width: 100%;
margin-bottom: 15px;
padding: 10px;
box-sizing: border-box;
border: 1px solid #ddd;
border-radius: 5px;
}
button {
padding: 15px;
border-radius: 10px;
margin-top: 15px;
margin-bottom: 15px;
border: none;
color: white;
cursor: pointer;
background-color: #000080;
width: 100%;
font-size: 16px;
}
.wrap {
display: flex;
justify-content: center;
align-items: center;
}