-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtulip.html
executable file
·198 lines (191 loc) · 5.18 KB
/
tulip.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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Team Moder</title>
<style>
html,body {
margin: 0; padding:0;
width: 100vw;
overflow-x: hidden;
background-color: #fcdaa9;
font: 14px 'Open Sans', sans-serif;
line-height: 1.4em;
color: #404646;
}
header {
overflow: hidden;
background-color:#fcdaa9;
color:#bb7d02;
padding: 100px;
text-align: center;
font: bold 35px Roboto;
}
.container {
box-sizing: border-box;
min-height: 83vh;
width: 100%;
margin: 5px;
display: flex;
flex-flow: row wrap;
align-content: flex-start;
padding: 0.1em;
}
.icontainer {
box-sizing: border-box;
width: 100%;
margin: 5px;
display: flex;
flex-flow: row wrap;
align-content:flex-flow;
padding: 0.1em;
}
.card {
margin: 0.5em 1.2em 0.5em 0.1em;
height: 14em;
max-width: 99%;
flex: 1 1 auto;
display: flex;
background-color:#f7e8d8;
box-shadow: 1px 3px 3px rgba(0, 10, 20, 0.06);
border-radius: 15px;
padding: 5px;
}
.card img {
height: 100%;
max-width: 10em;
-o-object-fit: cover;
object-fit: cover;
flex: 1 1 auto;
border-radius: 15px 5px 5px 15px;
}
.card-body {
width: 12em;
max-height: 100%;
flex: 1 1 auto;
display: flex;
flex-flow: column nowrap;
justify-content: flex-start;
padding: 5px;
}
.card-body button {
min-width: 8.3em;
flex: none;
align-self: flex-start;
margin-top: auto;
padding: 0.6em 0.6em;
font-size: 0.92em;
color: #bb7d02;
background:#fcdaa9;
border: 0.8px solid #bb7d02;
border-radius: 15px 5px 15px 5px;
font: bold 18px Roboto;
}
.card-body button:hover {
border-color: #fcdaa9;
background:#bb7d02;
}
.card-text {
position: relative;
flex: 1;
overflow: hidden;
text-overflow: ellipsis;
margin: 0 0 0.8em 0;
padding: 0;
}
.card-text h3, .card-text p {
margin-top: 0;
}
.card-text:after {
position: absolute;
bottom: 0;
content: "";
width: 100%;
height: 1em;
background: linear-gradient(rgba(255, 255, 255, 0), #f7e8d8);
}
a {
color: #fcdaa9;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
position:relative;
left: 0;
bottom: 0;
height: 40px;
width: 100%;
background-color:#fcdaa9;
color:#bb7d02;
text-align: center;
vertical-align: text-bottom;
}
.isection-padding{
padding: 10px 0;
}
table {
border-collapse: collapse;
}
table, th, td {
border: 1px #bb7d02;
color: #fcdaa9;
background-color: #bb7d02;
}
th, td {
padding: 10px;
background-color: #bb7d02;
color: white;
}
th {
background-color: #f7e8d8;
color: #bb7d02;
}
</style>
</head>
<body>
<header>TEAM MoDER</header>
<div class='container'>
<div class='card'>
<img src='img/team/1.jpg'>
<div class='card-body'>
<div class='card-text'>
<h3>Lead Founder/Ui Designer</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
<button>Denial/RebornPrjkt</button>
</div>
</div>
<div class='card'>
<img src='img/team/IMG_20220318_211326_698.jpg'>
<div class='card-body'>
<div class='card-text'>
<h3>Feature Maker/Ui Design</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
<button>Ari Den/VortexPrjkt</button>
</div>
</div>
<div class='card'>
<img src='img/team/IMG_20220318_211311_679.jpg'/>
<div class='card-body'>
<div class='card-text'>
<h3>Ui Design</h3>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
when an unknown printer took a galley of type and scrambled it to make a type specimen book.
It has survived not only five centuries, but also the leap into electronic typesetting,
remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset
sheets containing Lorem Ipsum passages, and more recently with desktop publishing software
like Aldus PageMaker including versions of Lorem Ipsum.In porttitor porta mi pharetra tempor.</p>
</div>
<button>yopie/MobxPrjkt</button>
</div>
</div>
</div>
</body>
<div style="clear: both;"></div>
<footer><p>RebornPrjkt #MRT - © 2019</p></footer>
</html>