-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle1.css
More file actions
52 lines (52 loc) · 914 Bytes
/
style1.css
File metadata and controls
52 lines (52 loc) · 914 Bytes
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
*{
margin: 0;
padding: 0;
}
.bgimg{
width: 100%;
height: 100vh;
background-image: linear-gradient(27deg, #004E95 50%, #013A68 50%);
}
h2{
font-family: Arial, Helvetica, sans-serif;
font-size: xx-large;
line-height: 100px;
margin: auto;
text-align: center;
color: white;
}
.inputbox{
width: 40%;
height: 50px;
display: block;
margin: auto;
padding: 0 10px;
box-sizing: border-box;
border-style: solid;
border-width: thin;
}
.ok{
width: 30%;
font-size: medium;
height: 50px;
display: block;
margin: auto;
color: white;
background-color: dodgerblue;
border: none;
border-radius: 5px;
font-weight: bold;
text-transform: uppercase;
}
.back{
position: absolute;
right: 5%;
top: 5%;
width: 32px;
height: 32px;
color: white
}
span{
font-size: medium;
margin-left: 30%;
}