Post lookin good
This commit is contained in:
parent
2a3b6510f2
commit
25b3d85f2a
3 changed files with 51 additions and 10 deletions
|
@ -1,6 +1,6 @@
|
||||||
/* Combination */
|
/* Combination */
|
||||||
header, footer {
|
header, footer {
|
||||||
style="position: relative;
|
position: relative;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
37
CSS/post.css
37
CSS/post.css
|
@ -1,4 +1,5 @@
|
||||||
html {
|
html {
|
||||||
|
background: linear-gradient(#FFFFFF, #dcdcdc, #2eff51);
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
overflow-y: hidden;
|
overflow-y: hidden;
|
||||||
}
|
}
|
||||||
|
@ -15,10 +16,44 @@ body {
|
||||||
section {
|
section {
|
||||||
height: 75vh;
|
height: 75vh;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
textarea, select, input, label {
|
||||||
|
resize: none;
|
||||||
|
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 2px;
|
||||||
|
border-color: #00FFFF;
|
||||||
|
border-radius: 2% / 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Divide {
|
||||||
|
margin-top: auto;
|
||||||
|
margin-bottom: auto;
|
||||||
|
margin-left: 1%;
|
||||||
|
margin-right: 1%;
|
||||||
|
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 4px;
|
||||||
|
border-radius: 10%;
|
||||||
|
|
||||||
|
padding: 1%;
|
||||||
|
|
||||||
|
background-color: white;
|
||||||
|
filter: drop-shadow(0px 20px 10px #00cf23);
|
||||||
|
|
||||||
|
transition: background-color 0.5s, filter 0.5s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Button:hover {
|
||||||
|
background-color: #dcdcdc;
|
||||||
|
filter: drop-shadow(0px -20px 10px #2eff51);
|
||||||
|
}
|
||||||
|
|
||||||
.SmallButton {
|
.SmallButton {
|
||||||
margin-top: 30px;
|
margin-top: 30px;
|
||||||
|
|
||||||
|
@ -33,5 +68,5 @@ footer {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
||||||
height: 5vh;
|
height: 20vh;
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,22 +16,28 @@
|
||||||
<h1>Post</h1>
|
<h1>Post</h1>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<textarea cols="50" rows="25" class="Text" placeholder="status here..."></textarea>
|
<!-- This the typing div :3 -->
|
||||||
<div>
|
<div class="Divide">
|
||||||
|
<textarea cols="50" rows="25" class="Text" placeholder="status here..."></textarea>
|
||||||
|
<div><textarea cols="50" rows="2" class="Warning" maxlength="100" placeholder="Content Warnings"></textarea></div>
|
||||||
|
<div><textarea cols="50" rows="1" class="Tags" maxlength="50" placeholder="Tags (seperate with ;)"></textarea></div>
|
||||||
|
</div>
|
||||||
|
<!-- This the "settings" div :3 -->
|
||||||
|
<div class="Divide">
|
||||||
<select class="PostVisibility">
|
<select class="PostVisibility">
|
||||||
<option value="Public">Public Post</option>
|
<option value="Public">Public Post</option>
|
||||||
<option value="Quiet">Quiet Public Post</option>
|
<option value="Quiet">Quiet Public Post</option>
|
||||||
<option value="Friend">Friends Only Post</option>
|
<option value="Friend">Friends Only Post</option>
|
||||||
<option value="Private">Private Post</option>
|
<option value="Private">Private Post</option>
|
||||||
</select>
|
</select>
|
||||||
<input type="checkbox" class="PostYoutube" />
|
<div></div>
|
||||||
<label>Post to Youtube</label>
|
<input type="checkbox" class="PostYoutube" />
|
||||||
|
<label>Post to Youtube</label>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<textarea cols="50" rows="2" class="Warning" maxlength="100" placeholder="Content Warnings"></textarea>
|
<div class="Divide Button">
|
||||||
<div>
|
<p>POST!</p>
|
||||||
<textarea cols="50" rows="1" class="Tags" maxlength="50" placeholder="Tags (seperate with ;)"></textarea>
|
|
||||||
</div>
|
</div>
|
||||||
<p class="Button">POST!</p>
|
|
||||||
</section>
|
</section>
|
||||||
<footer>
|
<footer>
|
||||||
<p class="SmallButton" onclick="history.back();"><b>Back</b></p>
|
<p class="SmallButton" onclick="history.back();"><b>Back</b></p>
|
||||||
|
|
Loading…
Add table
Reference in a new issue