-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (67 loc) · 1.36 KB
/
Copy pathstyle.css
File metadata and controls
72 lines (67 loc) · 1.36 KB
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
66
67
68
69
70
71
72
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: cursive;
}
body{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: color #512a2a;;
}
.container{
width: 400px;
background-color: #ffffff;
padding: 25px 35px;
border-radius: 10px;
box-shadow: 10px 10px 10px rgba(0,0,0, 0.5);
}
.container p{
display: flex;
justify-content: center;
font-size: 25px;
font-weight: 500;
margin-bottom: 30px;
}
.container input{
width: 100px;
height: 50px;
padding: 10px;
border: 1px solid rgb(205, 197, 197);
outline: none;
border-radius: 10px;
box-shadow: 3px 4px 5px rgba(0,0,0, 0.1) inset;
margin-bottom: 30px;
}
.btn{
width: 100%;
height: 50px;
border-radius: 10px;
border: none;
outline: none;
background:blue;
color: white;
font-size: 20px;
font-weight: 500;
cursor: pointer;
box-shadow: 0 5px 10px rgba(0,0,0, 0.3);
margin: 20px 0;
}
#img-box{
width: 200px;
border-radius: 10px;
max-height: 0;
overflow: hidden;
transition: max-height 1s;
}
#img-box img{
width :100%;
padding: 10px;
}
#img-box.show-img{
max-height: 300px;
margin: 10px auto;
border: 1px solid rgb(201, 199, 199);
}