-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (46 loc) · 846 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
42
43
44
45
46
47
48
49
body{
background-color: #e2f3f5;
display: flex;
height: 100vh;
justify-content: space-evenly;
align-items: center;
font-family: 'Montserrat', sans-serif;
}
div{
background-color: #22d1ee;
padding: 50px 40px 40px 50px;
border-radius: 5px;
box-shadow: 2px 2px 5px grey;
text-align: center;
}
input{
padding: 25px;
border: 0px;
border-radius: 5px;
color: #3d5af1;
font-size: 20px;
margin: 10px 0 20px 0;
box-shadow: 1px 1px 5px grey inset;
}
hr{
border: 1px solid #e2f3f5
}
h1{
color: #3d5af1
}
button{
padding: 20px 30px;
margin: 0 0 10px 0;
border: 0px;
border-radius: 5px;
color: #3d5af1;
font-size: 20px;
box-shadow: 1px 1px 5px grey;
}
button:hover{
transform: scale(1.05);
}
span{
font-size: 25px;
color: white;
}