-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (100 loc) · 2.26 KB
/
Copy pathstyle.css
File metadata and controls
116 lines (100 loc) · 2.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
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
115
116
@import url('https://fonts.googleapis.com/css2?family=Asap+Condensed:wght@700&family=Sora&display=swap');
.container{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
gap: 2px;
width: 100%;
}
.FormCont{
display: flex;
flex-direction: column;
align-items: center;
height: 400px;
width: 370px;
border: 1px solid rgba(0, 0, 0, 0.164);
border-radius: 10px;
background-color: rgba(255, 255, 255, 0.776);
}
.LogoCont{
margin-top: 40px;
font-family: 'Asap Condensed', sans-serif;
font-size: 30px;
}
.FormContent{
margin-top: 40px;
display: flex;
flex-direction: column;
justify-content: center;
gap: 7px;
height: 100px;
}
::placeholder{
font-family: 'Sora', sans-serif;
color: rgba(0, 0, 0, 0.566);
}
.inputype{
padding: 6px;
height: 20px;
background-color: rgba(0, 0, 0, 0.069);
border: 1px solid rgba(0, 0, 0, 0.257);
border-radius: 4px;
}
.SubmitButton{
font-family: 'Sora', sans-serif;
display: flex;
justify-content: center;
background-color: #2b57d3;
width: 268px;
height: 32px;
color: white;
border-radius: 6px;
border: none;
align-items: center;
}
.SubmitButton:hover{
background-color: #2b6ed3;
cursor: pointer;
transform: translateY(-2px);
box-shadow: 0px 2px 4px black;
}
.Cad{
text-decoration: none;
font-family: 'Sora', sans-serif;
font-size: 14px;
}
.Logo{
height: 400px;
}
.warning {
padding: 1rem;
margin-top: 1rem;
border: 1px solid red;
border-radius: 10px;
background-color: rgba(255, 0, 0, 0.317);
}
body {
background-image: url('./image/students.jpeg'), linear-gradient(90deg, rgba(27,27,82,1) 0%, rgba(9,9,121,0.7651435574229692) 40%, rgba(9,9,121,0.7035189075630253) 60%, rgba(27,27,82,1) 100%);
width: 100vw;
height: 100vh;
background-repeat: no-repeat;
background-size: cover;
background-blend-mode: multiply;
filter: blur(100%);
}
.pageTitle{
position: absolute;
width: 100%;
text-align: center;
color: white;
font-family: 'Asap Condensed', sans-serif;
}
.pageTitle>h1{
font-size: 3rem;
font-weight: 600;
margin-bottom: 3px;
}
.pageTitle>small{
font-size: 1rem;
}