-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
41 lines (38 loc) · 938 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 18px;
}
body{
height: 100vh;
background-color: rgb(32, 75, 82);
display: flex;
align-items: center;
justify-content: center;
}
.container{
width: 450px;
background-color: white;
padding: 70px,50px;
box-shadow: 0 20px 25px rgba(0, 0, 0, 0.25);
border-radius: 8px;
/* display: flex;
align-items: center;
justify-content: center; */
transform: translate(-50%,-50%);
}
.cf{
width: 45%;
}
input{
width: 100%;
height: 50px;
border-radius: 5px;
border: 2px solid #d2d2d2;
outline: none;
margin-top: 8px;
padding: 0 10px;
}