-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbox_shadow.html
56 lines (51 loc) · 1.47 KB
/
box_shadow.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Box Shadow</title>
<style>
.parent{
display: flex;
flex-wrap: wrap;
flex-grow: 1;
border: 5px solid teal;
}
.box {
border: 5px solid white;
width: 200px;
height: 200px;
background-color: rgba(90, 4, 107, 0.9);
box-shadow: 10px 10px 0px 0px rgba(221, 13, 13, 0.5), -10px -10px rgba(13, 221, 75, 0.5), -10px 10px rgba(27, 13, 221, 0.5), 10px -10px rgba(221, 218, 13, 0.5);
margin: 50px;
border-radius: 20px;
}
input{
height: 40px;
width: 300px;
outline: none;
/* border: 2px solid #000; */
border-radius: 25px;
padding-left: 20px;
box-shadow: 2px 2px 8px teal inset;
font-weight: 600;
}
</style>
</head>
<body>
<div class="parent">
<div class="box"></div>
<input placeholder="something write" type="text" name="" id="">
<div class="box"></div>
<input placeholder="something write" type="text" name="" id="">
<div class="box"></div>
<input placeholder="something write" type="text" name="" id="">
<div class="box"></div>
<input placeholder="something write" type="text" name="" id="">
<div class="box"></div>
<input placeholder="something write" type="text" name="" id="">
<div class="box"></div>
<input placeholder="something write" type="text" name="" id="">
</div>
</body>
</html>