-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyles.css
57 lines (48 loc) · 769 Bytes
/
styles.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
*{
margin:0;
padding:0;
box-sizing: border-box;
}
h1,
h3{
color:black;
}
h3{
margin-top:10px;
}
body{
background-color: #f39f86;
background-image: linear-gradient(315deg, #f39f86 0%, #f9d976 74%);
height: 100vh;
}
.main-container{
display:flex;
flex-direction: column;
padding:20px;
margin: 50px;
justify-content: center;
align-items: center;
}
.container{
display:flex;
flex-direction:column;
padding:20px;
width:50%;
justify-content: center;
}
input{
margin-top:15px;
border:none;
padding:10px;
}
button{
border:none;
padding:15px;
color:white;
background-color:#00b894;
width: 55%;
}
.btn-container{
display: flex;
justify-content: center;
}