-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path20-flex-2.html
More file actions
111 lines (85 loc) · 1.79 KB
/
Copy path20-flex-2.html
File metadata and controls
111 lines (85 loc) · 1.79 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<title>
Flexy
</title>
<style>
p {
margin-top: 0;
margin-bottom: 0;
font-family: Arial, Helvetica, sans-serif;
}
.flex-grid {
width: 300px;
padding: 10px;
padding-bottom: 0;
display: flex;
flex-direction: column;
border-radius: 5px;
box-shadow: 0px 0px 1.5px rgba(0, 0, 0, 0.7);
}
button {
padding-left: 12px;
padding-right: 12px;
font-weight: bold;
font-size: 15px;
vertical-align: middle;
color: white;
border-style: none;
padding-top: 4px;
padding-bottom:4px;
border-radius: 20px;
background-color: rgb(0, 97, 208);
cursor: pointer;
}
.element-flex {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="flex-grid">
<div class="element-flex">
<div class="info">
<p class="text">
Home
</p>
</div>
<div class="message">
<button>
14
</button>
</div>
</div>
<div class="element-flex">
<div class="info">
<p class="text">
Notifications
</p>
</div>
<div class="message">
<button>
3
</button>
</div>
</div>
<div class="element-flex">
<div class="info">
<p class="text">
Messages
</p>
</div>
<div class="message">
<button>
5
</button>
</div>
</div>
</div>
</body>
</html>