-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from OdysseusLarp/feat-story-team-changes
Story team changes
- Loading branch information
Showing
11 changed files
with
184 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
.message { | ||
text-align: left; | ||
margin-left: 18px; | ||
} | ||
|
||
h1.message { | ||
color: #4fa129; | ||
} | ||
|
||
.message .caption{ | ||
font-weight: bold; | ||
} | ||
|
||
.message .row-mini-header { | ||
margin-top: 15px; | ||
} | ||
|
||
.message .mini-header { | ||
font-weight: 600; | ||
color: #4fa129; | ||
font-size: 20px; | ||
} | ||
|
||
.message a { | ||
color: #4fa129 !important; | ||
} | ||
|
||
.message .new { | ||
color: #da3e00; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.messages { | ||
text-align: left; | ||
margin-top: 20px; | ||
margin-left: 18px; | ||
} | ||
.messages h1 { | ||
color: #4fa129; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
import { Container, Row, Col } from "react-bootstrap"; | ||
import './Messages.css'; | ||
import './Message.css'; | ||
|
||
export default function Messages() { | ||
return ( | ||
<div> | ||
<h1 className='message' id="app-title">Messages [CREATE NEW MESSAGE BUTTON]</h1> | ||
<div className='message'> | ||
<Container fluid className='message'> | ||
<Row className='row-mini-header'> | ||
<Col sm><span className='mini-header'>Basic Info</span></Col> | ||
</Row> | ||
<Row> | ||
<Col sm={6}><span className='caption'>Happens after jump: </span>- / 3 / 13 (Editable unless event is locked)</Col> | ||
</Row> | ||
<Row> | ||
<Col sm={6}><span className='caption'>Message type: </span>Event / EVA / Hints for Scientists / Jump / Warning / Fleet Comms / Fleet Secretary / News</Col> | ||
</Row> | ||
<Row> | ||
<Col sm> </Col> | ||
</Row> | ||
<Row> | ||
<Col sm><span className='mini-header'>Message</span></Col> | ||
</Row> | ||
<Row> | ||
<Col sm><span> Copy pasted stuff which we don't need to write many times. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</span></Col> | ||
</Row> | ||
<Row> | ||
<Col sm> </Col> | ||
</Row> | ||
<Row> | ||
<Col sm><span className='mini-header'>GM Notes</span></Col> | ||
</Row> | ||
<Row> | ||
<Col sm><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</span></Col> | ||
</Row> | ||
<Row> | ||
<Col sm> </Col> | ||
</Row> | ||
</Container> | ||
</div> | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters