-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (56 loc) · 1.15 KB
/
style.css
File metadata and controls
62 lines (56 loc) · 1.15 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
body {
background-image: url('photos/net\ back.webp');
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
color: #fff;
font-family: sans-serif;
margin: 0;
}
.container {
background-color: rgba(0, 0, 0, 0.7);
padding: 30px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
display: flex;
flex-direction: column;
align-items: center;
width: 400px;
max-width: 80%;
}
.container h1 {
margin-bottom: 20px;
}
.container input[type="text"],
.container input[type="password"] {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 3px;
}
.container input[type="checkbox"] {
padding-top: 20px;
}
.container button {
background-color: #e50914;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 3px;
cursor: pointer;
margin-top: 10px;
margin-bottom: 15px;
width: 190px;
}
.container p {
margin: 15px 0;
}
.container a {
color: #ffffff;
text-decoration: none;
}