-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
49 lines (49 loc) · 925 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
*{
margin: 0;
padding: 0;
font-family: sans-serif;
}
body{
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
#container{
width: 40vw;
height: 60vh;
display: flex;
align-items: center;
justify-content: space-evenly;
flex-direction: column;
border: 1px solid black;
border-radius: 20px;
}
#container input{
width: 65%;
height: 8%;
font-size: 1.2vw;
outline: none;
border-radius: 5px;
border: 1px solid black;
padding: 5px;
}
button{
width: 10vw;
height: 6vh;
border-radius: 5px;
background-color: royalblue;
outline: none;
border: none;
cursor: pointer;
box-shadow: 5px 5px 0px black;
transition: 0.5s;
font-size: 1vw;
font-weight: 600;
color: white;
}
button:active{
transform: translate(5px,5px);
box-shadow: 0px 0px 0px transparent;
}