Bennett: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{ | __NOTOC__ | ||
{{#css: | |||
.container { | |||
margin: auto; | |||
height: auto; | |||
width: 1000px; | |||
font-family: Futura, "Trebuchet MS", Arial, sans-serif; | |||
color: #111; | |||
display: flex; | |||
flex-direction: column; | |||
} | |||
.light { | |||
background-color: white; | |||
border-color: blue; | |||
} | |||
.dark { | |||
background-color: #111; | |||
color: white; | |||
} | |||
.top-section { | |||
display: flex; | |||
} | |||
.right-panel { | |||
width: 70%; | |||
</table> | height: auto; | ||
} | |||
.left-panel { | |||
width: 30%; | |||
display: flex; | |||
flex-direction: column; | |||
justify-content: center; | |||
border: 8px; | |||
border-style: solid; | |||
border-color: #111; | |||
border-bottom-style: hidden; | |||
background-color: #fefeff; | |||
font-size: 0.9em; | |||
} | |||
.portrait-image { | |||
width: 100%; | |||
} | |||
.portrait-image img { | |||
width: 100%; | |||
height: auto; | |||
} | |||
.info-table { | |||
margin: auto; | |||
width: 100%; | |||
padding: 0 1em; | |||
} | |||
.info-table-label { | |||
font-weight: 600; | |||
width: 45%; | |||
} | |||
.center { | |||
text-align: center; | |||
} | |||
.underline { | |||
border-bottom-style: solid; | |||
border-bottom-width: 0.1em; | |||
padding-bottom: 0.5em; | |||
} | |||
.label { | |||
margin: 0.2em 0; | |||
font-size: 1.4em; | |||
font-weight: 600; | |||
font-style: italic; | |||
} | |||
.header-container { | |||
width: 100%; | |||
display: flex; | |||
justify-content: center; | |||
padding: 2em 0; | |||
} | |||
.header-title { | |||
width: 94%; | |||
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif; | |||
font-size: 25px; | |||
letter-spacing: 2px; | |||
word-spacing: 2px; | |||
font-weight: 700; | |||
text-decoration: none; | |||
font-style: normal; | |||
font-variant: normal; | |||
text-transform: none; | |||
} | |||
.photo-banner { | |||
width: 100%; | |||
height: auto; | |||
} | |||
.photo-banner img { | |||
width: 100%; | |||
height: 100%; | |||
} | |||
.mid-banner { | |||
margin: 0 0 -1em 0; | |||
} | |||
.biography-container { | |||
width: 94%; | |||
padding: 1em 3%; | |||
} | |||
.hooks-container, .contacts-container, .gallery-container, .logs-container { | |||
width: 94%; | |||
padding: 1em 3%; | |||
font-size: 0.9em; | |||
display: flex; | |||
flex-direction: column; | |||
} | |||
.hooks-content { | |||
width: 100%; | |||
display: flex; | |||
} | |||
.hooks-content td img { | |||
width: 160px; | |||
height: auto; | |||
} | |||
.hooks-table { | |||
display: flex; | |||
} | |||
.hooks-table a { | |||
color: white; | |||
} | |||
.hooks-table a:visited { | |||
color: white; | |||
} | |||
.hooks-table a:hover { | |||
color: blue; | |||
} | |||
.hooks-table tbody { | |||
width: 100% | |||
} | |||
.hooks-table-label { | |||
width: 180px; | |||
font-weight: 600; | |||
padding-left: 0.5em; | |||
} | |||
.anim-gif { | |||
width: 40%; | |||
display: flex; | |||
flex-direction: column; | |||
justify-content: center; | |||
} | |||
.anim-gif img { | |||
width: 100%; | |||
height: auto; | |||
} | |||
.gallery-content ul { | |||
display: flex; | |||
flex-wrap: wrap; | |||
list-style-type: none; | |||
justify-content: center; | |||
} | |||
.gallery-content img { | |||
height: 320px; | |||
max-width: 100%; | |||
-webkit-transition: all 0.5s ease; | |||
-moz-transition: all 0.5s ease; | |||
-o-transition: all 0.5s ease; | |||
-ms-transition: all 0.5s ease; | |||
transition: all 0.5s ease; | |||
margin: 10px; | |||
-moz-box-shadow: 10px 10px 20px rgba(0,0,0,0.75); | |||
webkit-box-shadow: 10px 10px 20px rgba(0,0,0,0.75); | |||
box-shadow: 10px 10px 20px rgba(0,0,0,0.75); | |||
} | |||
.gallery-content img:hover { | |||
-webkit-transform: scale(1.6); | |||
-moz-transform: scale(1.6); | |||
-o-transform: scale(1.6); | |||
-ms-transform: scale(1.6); | |||
transform: scale(1.6); | |||
cursor: pointer; | |||
} | |||
.logs-content { | |||
display: flex; | |||
justify-content: center; | |||
} | |||
}} | |||
<div class="container"> | |||
<div class="top-section"> | |||
<div class="left-panel"> | |||
<div class="portrait-image">[[Image:BennettA14.png]]</div> | |||
<div class="header-container"> | |||
<div class="label center">Info</div> | |||
</div> | |||
<table class="info-table"> | |||
<tr> | |||
<td class="info-table-label">Name:</td> | |||
<td>Bennett Piper</td> | |||
</tr> | |||
<tr> | |||
<td class="info-table-label">Position:</td> | |||
<td>Hollywood Star</td> | |||
</tr> | |||
<tr> | |||
<td class="info-table-label">Age:</td> | |||
<td>27</td> | |||
</tr> | |||
</table> | |||
<hr style="width: 90%" /> | |||
<div class="header-container"> | |||
<div class="label center">Physical Attributes</div> | |||
</div> | |||
<table class="info-table"> | |||
<tr> | |||
<td class="info-table-label">Height:</td> | |||
<td>6'0</td> | |||
</tr> | |||
<tr> | |||
<td class="info-table-label">Weight:</td> | |||
<td>195lbs</td> | |||
</tr> | |||
<tr> | |||
<td class="info-table-label">Complexion:</td> | |||
<td>Fair</td> | |||
</tr> | |||
<tr> | |||
<td class="info-table-label">Hair:</td> | |||
<td>Dark</td> | |||
</tr> | |||
<tr> | |||
<td class="info-table-label">Eyes:</td> | |||
<td>Blue</td> | |||
</tr> | |||
</table> | |||
<hr style="width: 90%" /> | |||
<div class="header-container"> | |||
<div class="label center">Some Publicly Notable Stats</div> | |||
</div> | |||
<table class="info-table"> | |||
<tr> | |||
<td class="info-table-label">Resources:</td> | |||
<td>🔴🔴🔴🔴🔴🔴⚫️</td> | |||
</tr> | |||
<tr> | |||
<td class="info-table-label">Fame:</td> | |||
<td>🔴🔴🔴🔴️⚫</td> | |||
</tr> | |||
<tr> | |||
<td class="info-table-label">Charisma:</td> | |||
<td>🔴🔴🔴🔴️⚫</td> | |||
</tr> | |||
<tr> | |||
<td class="info-table-label">Appearance:</td> | |||
<td>🔴🔴🔴🔴️⚫</td> | |||
</tr> | |||
<tr> | |||
<td class="info-table-label">Performance:</td> | |||
<td>🔴🔴🔴🔴️⚫</td> | |||
</tr> | |||
<tr> | |||
<td class="info-table-label">Artistically Gifted:</td> | |||
<td>🔴</td> | |||
</tr> | |||
<tr> | |||
<td class="info-table-label">Rising Star:</td> | |||
<td>🔴🔴🔴</td> | |||
</tr> | |||
<tr> | |||
<td class="info-table-label">Sex Appeal:</td> | |||
<td>🔴🔴🔴</td> | |||
</tr> | |||
</tr> | |||
<tr> | |||
<td class="info-table-label">I Know You:</td> | |||
<td>🔴</td> | |||
</tr> | |||
</table> | |||
<hr style="width: 90%" /> | |||
</div> | |||
<div class="right-panel"> | |||
<div class="header-container"> | |||
<div class="header-title center underline">Bennett Piper</div> | |||
</div> | |||
<div class="biography-container"> | |||
<div class="label center underline">Biography</div> | |||
<p> | |||
Anyone who is big into Hollywood action flicks has probably seen one starring Bennett Piper in recent years - names like Wayward Warrior (a fantasy adventure), The Cloud King (he beats people up on steampunk airships) or a trilogy called Indomitable (a sci-fi space thing with magic in). People who aren't into films at all may well have heard of him too, if only through the amount of merchandise depicting him or through various advertisements. He's known on screen for some mix of his looks and easy manner, or even humor - the films often drift into comedic territory. While the artistic merits of some of the movies he's been in are sometimes the subject of debate, the money they bring in is not - they make a mint - and he's undeniably a talented actor. | |||
</p> | |||
<p> | |||
Off-screen, Bennett's a readily recognisable face round the social scene in LA. He frequently attends all sorts of parties and galas and is an enthusiastic host himself. He can often be found in various cafes or clubs. He also recently bought a business, which he called the B-Plex, with a restaurant and bar, bowling alley, laser tag and arcade, which he frequents too. He's more than willing to hang out with his fans and shoot the breeze with strangers alike. | |||
</p> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="hooks-container dark"> | |||
<div class="label center underline">Roleplay Hooks</div> | |||
<div class="hooks-content"> | |||
<table class="hooks-table" cell> | |||
<tr> | |||
<td class="hooks-table-label" style="padding:10px">An Approachable Sort</td> | |||
<td style="padding:10px">Bennett is well known to have a habit of speaking to just about anyone and everyone. If you strike up a conversation with him, he's likely to engage wholeheartedly in it. He has a particular love of his fans, too. He's also known to get along especially well with the people who work behind the scenes on productions and in services.</td> | |||
</tr> | |||
<tr> | |||
<td class="hooks-table-label" style="padding:10px">Hollywood Insider</td> | |||
<td style="padding:10px">Bennett is known to take an interest in the goings-on of Hollywood. He's conspicuously in tune with what's happening and known to get along well with people in big studios.</td> | |||
</tr> | |||
<tr> | |||
<td class="hooks-table-label" style="padding:10px">Minted</td> | |||
<td style="padding:10px">He has a whole lot of money and is happy to spend it on anything he finds interesting. That, as it has turned out, can be quite a broad range. He has a house in the Bird Streets, is known to own several British-made luxury cars, and is always impeccably well-dressed. Beyond those obvious things though, his interests can prove to be rather diverse.</td> | |||
</tr> | |||
<tr> | |||
<td class="hooks-table-label" style="padding:10px">B-Plex</td> | |||
<td style="padding:10px">Bennett is the owner of what he calls an entertainment center. It's a restaurant and bar with a bowling alley, laser tag arena and arcade attached to it. He can not infrequently be found there himself.</td> | |||
</tr> | |||
</table> | |||
</div> | |||
</div> | |||
<div class="photo-banner mid-banner">[[File:The_Cloud_King.png]]</div> | |||
<div class="contacts-container dark"> | |||
<div class="label center underline">Contacts</div> | |||
<div class="hooks-content"> | |||
<table class="hooks-table"> | |||
<tr> | |||
<td>To do</td> | |||
</tr> | |||
</table> | |||
</div> | |||
</div> | |||
<div class="logs-container light"> | |||
<div class="label center underline">Logs</div> | |||
<div class="logs-content"> | |||
{{#dpl: | |||
|linksto={{PAGENAME}} | |||
|category=Logs | |||
|columns=3 | |||
|noresultsheader=<i>No logs have been posted yet.</i> | |||
}} | |||
</div> | |||
</div> | |||
<div class="photo-banner mid-banner">[[File:BennettAMain.png]]</div> | |||
<div class="gallery-container light"> | |||
<div class="label center underline">Gallery</div> | |||
<div class="gallery-content"> | |||
<ul> | |||
<li>[[File:BennettA10.png]]</li> | <li>[[File:BennettA10.png]]</li> | ||
<li>[[File:BennettA11.png]]</li> | <li>[[File:BennettA11.png]]</li> | ||
Line 61: | Line 400: | ||
<li>[[File:BennettB2.png]]</li> | <li>[[File:BennettB2.png]]</li> | ||
<li>[[File:BennettW1.png]]</li> | <li>[[File:BennettW1.png]]</li> | ||
</ul> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
[[Category:Characters | [[Category:Characters]][[Category:Fame]] |
Latest revision as of 16:34, 30 June 2023
Name: | Bennett Piper |
Position: | Hollywood Star |
Age: | 27 |
Height: | 6'0 |
Weight: | 195lbs |
Complexion: | Fair |
Hair: | Dark |
Eyes: | Blue |
Resources: | 🔴🔴🔴🔴🔴🔴⚫️ |
Fame: | 🔴🔴🔴🔴️⚫ |
Charisma: | 🔴🔴🔴🔴️⚫ |
Appearance: | 🔴🔴🔴🔴️⚫ |
Performance: | 🔴🔴🔴🔴️⚫ |
Artistically Gifted: | 🔴 |
Rising Star: | 🔴🔴🔴 |
Sex Appeal: | 🔴🔴🔴 |
I Know You: | 🔴 |
Anyone who is big into Hollywood action flicks has probably seen one starring Bennett Piper in recent years - names like Wayward Warrior (a fantasy adventure), The Cloud King (he beats people up on steampunk airships) or a trilogy called Indomitable (a sci-fi space thing with magic in). People who aren't into films at all may well have heard of him too, if only through the amount of merchandise depicting him or through various advertisements. He's known on screen for some mix of his looks and easy manner, or even humor - the films often drift into comedic territory. While the artistic merits of some of the movies he's been in are sometimes the subject of debate, the money they bring in is not - they make a mint - and he's undeniably a talented actor.
Off-screen, Bennett's a readily recognisable face round the social scene in LA. He frequently attends all sorts of parties and galas and is an enthusiastic host himself. He can often be found in various cafes or clubs. He also recently bought a business, which he called the B-Plex, with a restaurant and bar, bowling alley, laser tag and arcade, which he frequents too. He's more than willing to hang out with his fans and shoot the breeze with strangers alike.
An Approachable Sort | Bennett is well known to have a habit of speaking to just about anyone and everyone. If you strike up a conversation with him, he's likely to engage wholeheartedly in it. He has a particular love of his fans, too. He's also known to get along especially well with the people who work behind the scenes on productions and in services. |
Hollywood Insider | Bennett is known to take an interest in the goings-on of Hollywood. He's conspicuously in tune with what's happening and known to get along well with people in big studios. |
Minted | He has a whole lot of money and is happy to spend it on anything he finds interesting. That, as it has turned out, can be quite a broad range. He has a house in the Bird Streets, is known to own several British-made luxury cars, and is always impeccably well-dressed. Beyond those obvious things though, his interests can prove to be rather diverse. |
B-Plex | Bennett is the owner of what he calls an entertainment center. It's a restaurant and bar with a bowling alley, laser tag arena and arcade attached to it. He can not infrequently be found there himself. |
To do |