-
Notifications
You must be signed in to change notification settings - Fork 1
/
student-reg.css
90 lines (84 loc) · 1.72 KB
/
student-reg.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
:root {
--ui-color1:rgb(201, 89, 14);
--ui-color:rgb(24, 120, 255);
--blue:rgb(30, 144, 255)
}
body{
margin: 0;
padding: 0;
height: 100vh;
}
#registration{
background-color: white;
height:100%;
margin-top: 70px;
}
.form-container{
display: flex;
flex-direction: column;
place-items: center;
height: 100vh;
}
.reg-form{
display: flex;
flex-direction: column;
border-radius: 10px;
padding: 2% 4%;
box-shadow: 0px 0px 10px rgb(183, 177, 177);
height: 75%;
background-color:rgba(24, 120, 255,);
}
.reg-form h1{
text-align: center;
color: var(--ui-color);
}
.reg-form input[type=text]{
margin-bottom: 2%;
height:5%;
width: 25vw;
outline:none ;
border: 1px solid rgb(213, 213, 213);
border-radius: 3px;
}
.reg-form input[type=email]{
margin-bottom: 2%;
height:5%;
width: 25vw;
outline:none ;
border: 1px solid rgb(213, 213, 213);
border-radius: 3px;
}
.reg-form input[type=text]:focus{
box-shadow: 0 1px 1px rgb(170, 168, 168);
}
.text-box-text{
margin-top: 1%;
margin-bottom: 2px;
color: rgb(97, 95, 95);
}
.reg-button-container{
display: flex;
justify-content: center;
}
.reg-button{
width: 20vw;
height: 30px;
border-radius: 14px;
background-color:var(--ui-color);
color: white;
border: none;
transition: .5s;
margin-top: 7%;
cursor: pointer;
transition: .5s ease;
font-size: 16px;
}
.reg-button:hover{
background-color:rgb(12, 92, 203);
}
.reg-button:active{
background-color:rgb(15, 74, 156);
}
*{
font-family:'Be Vietnam Pro', sans-serif
}