-
Notifications
You must be signed in to change notification settings - Fork 1
/
loginStyle.css
81 lines (68 loc) · 1.47 KB
/
loginStyle.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
:root {
--greyblue: rgba(141, 153, 174,0.9);
--grey: rgba(222, 226, 230, 0.85);
--offwhite: #E2EAFC;
}
body {
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: #8D99AE;
background-repeat: no-repeat;
background-size: cover;
}
#blank-Div{
margin: 0px;
padding: 0px;
}
#login-main-div{
background-color: var(--grey);
stroke: 8D99AE;
stroke-width: 3px;
height: 100vh;
}
#title-div{
margin: 5em 0.25em 1em 0.25em;
padding: 0.25em;
}
#title-header{
color: #001937;
font-family: 'Montserrat', sans-serif;
font-weight: bold;
}
#login-header-div{
margin: 1em;
padding: 2em;
}
#login-header{
color: #001937;
background-color: rgba(141, 153, 174,0.7);
border-radius: 2%;
margin: 1em 0.5em;
padding: 0.25em;
font-family: 'Montserrat', sans-serif;
font-weight: bold;
}
#link-div{
margin: 1em 2em;
padding: 0.25em;
display: flex;
flex-direction: column;
}
#link-div > *:first-child {
display: block;
margin-bottom: 1em;
}
#login-div{
margin: 1em 2em;
padding: 0.25em;
}
input[type="text"], textarea {
background-color : var(--offwhite);
}
input[type="password"], textarea {
background-color : var(--offwhite);
}
#validEmailPasswordMsg {
color: #E63946;
}