-
Notifications
You must be signed in to change notification settings - Fork 1
/
Login.css
52 lines (47 loc) · 863 Bytes
/
Login.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
*{
padding: 0px;
margin: 0px;
}
.MainBody{
position: relative;
background-image: url("Images/2.png");
width: 210.5vh;
height: 100vh;
background-size: cover;
background-repeat: no-repeat;
}
.Headings{
position: absolute;
top: 40%;
left: 37%;
}
.Texty{
font-family: 'Dancing Script', cursive;
color: white;
font-size:x-large;
}
.Inputy{
display: flex;
flex-wrap: wrap;
width: 100px;
gap: 12px;
padding-top: 5px;
}
.InputBlock{
display: flex;
gap: 15px;
border: 2px solid black;
padding-left: 15px;
height: 20px;
width: auto;
border-radius: 10px;
}
.LoginButton{
font-family: 'Dancing Script', cursive;
margin-top: 15px;
width: 100px;
height: 35px;
background-color: rgba(95, 204, 95, 0.459);
color: white;
border-radius: 10px;
}