-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (61 loc) · 1.4 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
*{
margin:0;
padding:0;
}
body{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100%;
}
.container{
height: 80vh;
width:25%;
background:#afff36;
border-radius: 30px;
box-shadow:0px 20px 50px rgba(0, 0, 0, 0.507);
}
h3{
text-align: center;
margin-top: 30px;
font-size: 30px;font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: rgb(0, 0, 0);
}img{
height: 250px;
width: 200px;
margin: 20px 20px 20px 90px;
box-shadow:0px 20px 50px rgba(0, 0, 0, 0.507);
}
p{
margin: 4%;
text-align: center;
font-size: 20px;
letter-spacing: 2px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: rgb(0, 0, 0);
}
input{
width: 80%;
margin-left: 35px;
}
button{
margin-top: 3%;
margin-left: 12%;
padding: 20px;
font-size: 20px;
border-radius: 60px;
border: none;
box-shadow:5px 5px 10px rgba(0, 0, 0, 0.507),
-1px -1px 1px white;
cursor: pointer;
}
button:hover{
box-shadow:inset 5px 5px 10px rgba(0, 0, 0, 0.507),
-1px -1px 1px white;
}
@media screen and (max-width:1200px){
.container{
width: 30%;
}
}