-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
58 lines (49 loc) · 1.01 KB
/
main.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
body{
background: url(103593.jpg);
background-size: cover;
background-repeat: no-repeat ;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}
.container{
max-width: 380px;
margin: auto;
margin-top: 100px;
background-color: rgba(238, 237, 237, 0.8);
text-align: center;
border-radius: 25px;
padding: 40px;
color: #fff;
box-sizing: border-box;
}
h2{
color: #000000;
text-align: center;
text-transform: capitalize;
}
input{
width: 100%;
margin: 10px 0;
outline: none;
background-color: transparent ;
color: #000000;
padding: 15px 6px;
font-size: 18px;
font-weight: bold;
box-sizing: border-box;
border: none;
border-bottom: 1px #fff solid;
font-weight: bold;
}
button{
width: 90%;
border-radius: 12px;
padding: 10px;
background-color: rgb(255, 255, 255);
color: #000000;
font-size: 20px;
font-weight: bold;
outline: none;
cursor: pointer;
margin: 30px 10px 0px 10px;
}