forked from assembler-institute/php-server-environment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
78 lines (70 loc) · 1.26 KB
/
stylesheet.css
File metadata and controls
78 lines (70 loc) · 1.26 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
* {
font-family: "Inter", sans-serif;
}
body,
html {
background: url("assets/logo1.jpg");
background-size: 50%;
align-items: center;
width: 100%;
height: 100%;
}
.div-registration {
display: flex;
background: white;
width: 20%;
padding: 30px 0px;
justify-content: center;
border-radius: 10px;
margin: 0 auto;
align-items: center;
margin-top: 180px;
}
.form-registration {
width: 80%;
}
.div-registration input {
display: flex;
width: 100%;
border-radius: 5px;
border: 1px solid grey;
height: 2rem;
margin-top: 5px;
}
.div-registration button {
display: block;
font-weight: bold;
font-size: 15px;
width: 50%;
border-radius: 5px;
color: white;
border: 1px solid black;
background-color: #6366f1;
height: 2.3rem;
margin-top: 5px;
text-align: center;
margin: 0 auto;
margin-top: 10px;
cursor: pointer;
}
.todo {
background-color: red;
}
.error {
border: 1px solid red;
background-color: rgb(252, 177, 177);
padding-left: 10px;
border-radius: 3px;
margin-bottom: 20px;
}
.div-zona-privada {
background-color: white;
width: 35%;
border-radius: 10px;
text-align: center;
margin: 0 auto;
border: 1px solid red;
background-color: rgb(255, 194, 194);
padding: 20px;
margin-top: 100px;
}