-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
115 lines (96 loc) · 1.83 KB
/
styles.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
body{
font-family: 'Roboto Slab', serif;
width: 100vw;
height: 100vh;
overflow: hidden;
display: flex;
background-color: white;
}
.img {
display: flex;
width: 35%;
height: 100%;
margin: 1% 1% 1% 1%;
background: url(./assets/background_image.jpg) no-repeat center;
align-content: center;
justify-content: center;
background-size: cover;
}
.img-description {
margin-top: auto;
margin-bottom: 50px;
font-size: 150%;
color: white;
font-weight: 900;
text-shadow: 1px 1px #fae20c;
}
/* getting rid of the blue anchor tags */
a {
color: inherit;
text-decoration: inherit;
}
.form{
width: 75%;
margin: 0;
padding: 0;
margin-top: 1%;
}
.inputs {
padding-top: 0%;
padding-left: 0%;
padding-right: 30%;
background-color: azure;
display: flex;
flex-wrap: wrap;
/* align-items: center; */
justify-content: space-between;
padding-bottom: 1%;
}
.form-label {
font-weight: 600;
font-size: 20px;
display: flex;
padding: 4px;
size: 100px;
}
.account {
display: flex;
flex-direction: column;
}
.form-input {
border: 3.5px solid greenyellow;
color: black;
font-size: 1.2rem;
padding: 4px;
}
.error {
color: tomato;
display: flex;
align-content: flex-start;
justify-content: flex-start;
padding-bottom: 1%;
}
.form-input:focus {
border: 3.5px solid yellow;
}
.form-input:invalid {
border: 3.5px solid rgba(255, 0, 0, 0.52);
}
.form-end {
margin-top: 5px;
position: absolute;
font-size: 20px;
}
.create-acc {
padding: 5px;
font-size: 15px;
color: white;
font-weight: 800;
background: #009900;
border: none;
box-shadow: 2px 2px 2px 2px #888888;
user-select: none;
}
.create-acc:hover {
background: #29e42986;
}