-
Notifications
You must be signed in to change notification settings - Fork 1
/
registerStyle.css
86 lines (70 loc) · 1.53 KB
/
registerStyle.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
:root {
--greyblue: rgba(141, 153, 174,0.9);
--grey: rgba(222, 226, 230, 0.85);
--offwhite: #E2EAFC;
}
body {
min-height: 100vh;
height: 100%;
width: 100%;
background-image: url("https://thumbs.dreamstime.com/b/montreal-quebec-canada-concordia-university-john-molson-building-includes-digitally-equipped-teaching-amphitheatres-175783503.jpg");
background-color: var(--greyblue);
background-repeat: no-repeat;
background-size: cover;
}
input[type="text"], input[type="password"] {
width: 80%;
}
select, option {
width: 80%;
}
input[type="text"], textarea {
background-color : var(--offwhite);
}
input[type="number"], textarea {
background-color : var(--offwhite);
}
input[type="password"], textarea {
background-color : var(--offwhite);
}
select {
background-color : var(--offwhite);
}
.text-div, .password-div{
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
}
.ind-div{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
#register-form-div{
background-color: var(--grey);
margin-top: 15vh;
padding: 2em;
}
#title-div{
margin: 1em;
}
#register-title{
color: #001937;
font-family: 'Montserrat', sans-serif;
font-weight: bold;
}
@media (max-width: 576px) {
#container-div {
min-height: 100vh;
}
#register-form-div {
min-height: 100vh;
margin: 0;
padding-top: 20vh;
}
}
input {
text-align: center;
}