-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (66 loc) · 1.39 KB
/
style.css
File metadata and controls
71 lines (66 loc) · 1.39 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
body {
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-image: url("./MicrosoftTeams-image.png");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: white;
font-family: "Courier New", Courier, monospace;
}
.Heading {
margin-top: 2%;
background-color: rgba(0, 0, 0, 0.7);
width: 50%;
padding: 3% 0% 3% 0%;
text-align: center;
font-size: 28px;
font-weight: 700;
letter-spacing: 3px;
text-transform: uppercase;
}
.Form-deatils {
padding-top: 1.5%;
width: 50%;
background-color: rgba(0, 0, 0, 0.5);
margin-bottom: 2%;
padding-bottom: 1.5%;
display: flex;
justify-content: center;
align-items: center;
text-align: left;
font-size: 17px;
}
.Form-deatils label input {
height: 20px;
font-size: 15px;
border: none;
}
.input {
outline: none;
width: 100%;
margin-bottom: 2%;
margin-top: 1.5%;
background-color: rgba(255, 255, 255, 0.2);
color: rgb(16, 15, 15);
padding: 1% 2% 1% 2%;
font-size: 18px;
}
.button {
width: 100%;
text-align: center;
font-size: 18px;
padding-top: 2%;
padding-bottom: 2%;
font-weight: 800;
border: 2px solid white;
}
.button:hover {
cursor: pointer;
background-color: rgba(0, 0, 0, 0.5);
transition: 0.4s;
border-color: black;
}