-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
67 lines (63 loc) · 1.23 KB
/
css.css
File metadata and controls
67 lines (63 loc) · 1.23 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
.indexbody {
background-color: #4158D0;
background-image: linear-gradient(90deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
}
.studentbody{
background-color: #4158D0;
background-image: linear-gradient(120deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
}
.financialbody{
background-color: #4158D0;
background-image: linear-gradient(285deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
}
.radio{
width: 20%;
justify-content: center;
align-items: center ;
}
.img img{
height: 500px;
width: 350px;
background-size: cover;
position: absolute;
left :0px
}
form{
margin-top: 80px;
margin-right: 40px;
}
form label {
display: inline-block;
margin-top: 50px;
}
.box{
background-color:#F5FEFD;
height: 500px;
width: 700px;
border: solid mediumpurple 2px;
position: absolute;
top:50px;
right:350px
}
input{
border: 0;
border-bottom: 2px solid #4158D0;
outline: none;
width: 200px;
}
input::placeholder{
color: transparent;
transition: 300ms;
}
input:hover::placeholder{
color: gray;
}
input[type=submit]
{
margin-top: 80px;
margin-right: 125px;
background-color: #4158D0;
width: 100px;
height: 25px;
border-radius: 10PX;
}