-
Notifications
You must be signed in to change notification settings - Fork 0
/
practice.html
68 lines (66 loc) · 1.99 KB
/
practice.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
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<title>Practice</title>
<style>
.pict {
width: 50px;
height: 50px;
object-fit: cover;
object-position: center;
border-radius: 25px;
vertical-align: middle;
}
.test {
vertical-align: middle;
opacity: .7;
margin-left: 10px;
}
.tweet-button {
height: 36px;
width: 74px;
background-color: rgb(13, 162, 248);
color: white;
border: none;
border-radius: 18px;
font-weight: bold;
font-size: 15px;
cursor: pointer;
margin-left: 118px;
transition: box-shadow 1s;
vertical-align: middle;
}
.tweet-button:hover {
box-shadow: 5px 5px 10px rgba(0,0,0,.15);
}
.get {
margin-top: 30px;
width: 390px;
height: 30px;
border-radius: 18px;
border: none;
box-shadow: 1px 1px 8px gray;
}
.get2 {
border: none;
padding-left: 15px;
padding-top: 15px;
padding-bottom: 15px;
padding-right: 15px;
box-shadow: 1px 1px 8px gray;
display: inline-block;
width: 400px;
}
</style>
</head>
<body>
<div class="get2">
<img class="pict" src="pic.jpg">
<span class="test">What's happening? </span>
<button class="tweet-button">
Tweet
</button>
<input class="get" type="text" placeholder="Search">
</div>
</body>
</html>