-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (65 loc) · 1.25 KB
/
style.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
59
60
61
62
63
64
65
66
67
68
69
70
*{
margin: 0;
padding: 0;
}
body{
background-color: #133e4d;
font-family: "poppins", sans-serif;
}
nav{
background-color: #c0c7c9 ;
font-family: "New Amsterdam", sans-serif;
font-size: 35px;
text-align: center;
padding: 10px;
}
main{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container{
width: 300px;
padding: 30px;
background-color: aliceblue;
border-radius: 15px;
display: flex;
flex-direction: column;
font-family: "poppins", sans-serif;
font-weight: 500;
}
.container p{
margin: 10px 0 10px;
font-size: 22px;
}
.container input{
margin: 10px 0 10px;
padding: 20px 10px 20px;
border-radius: 5px;
}
.container span{
display: flex;
justify-content: center;
align-items: center;
margin: 10px 0 0;
}
.container button{
padding: 7px 30px 7px;
cursor: pointer;
background: #494eea;
color: #fff;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
border: 0;
outline: 0;
border-radius: 5px;
}
.code{
display: flex;
justify-content: center;
align-items: center;
}
.code img{
border-radius: 5px;
padding: 10px;
}