1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- @font-face {
- font-family: LoversQuarrel;
- src: url(/Yakap.ttf);
- }
- .page {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- border: red dashed 1px;
- }
- .header {
- position: relative;
- height: 100%;
- max-height: 300px;
- margin: 25px 25px 0px 25px;
- border: 15px double black;
- //border-image: url(border.png) 30 round;
- overflow: hidden;
- background: rgba(0, 0, 0, 0.8);
- }
- .headerImage {
- position: relative;
- width: 100%;
- vertical-align: middle;
- }
- .titleContainer {
- position: absolute;
- left: 50%;
- border: dotted red 1px;
- bottom: -1px;
- }
- .title {
- position: relative;
- background-color: rgba(0, 0, 0, 0.8);
- color: gold;
- border: 1px solid black;
- z-index: 2;
- left: -50%;
- padding: 5px 25px;
- }
- .storyContainer {
- width: 60%;
- margin: auto;
- background-color: rgba(0, 0, 0, 0.8);
- padding: 15px;
-
- border-left: 15px double silver;
- border-right: 15px double silver;
- }
- .storyText {
- color: #DEDEDE;
- font-family: LoversQuarrel;
- font-size: 1.4em;
- }
|