Update index.php
This commit is contained in:
parent
503969220f
commit
ac3bb71bd8
1 changed files with 12 additions and 12 deletions
24
index.php
24
index.php
|
@ -21,6 +21,16 @@
|
|||
resize: none;
|
||||
}
|
||||
|
||||
input[type=submit] {
|
||||
float: right;
|
||||
width: 100px;
|
||||
background: var(--accent);
|
||||
color: white;
|
||||
font-weight: 600;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.post {
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
|
@ -31,7 +41,7 @@
|
|||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-shadow: 0px 0px 10px gray;
|
||||
border-radius: 8px;
|
||||
border-radius: 4px;
|
||||
overflow: hidden;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
@ -62,23 +72,13 @@
|
|||
color: var(--accent);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
input[type=submit] {
|
||||
float: right;
|
||||
width: 100px;
|
||||
background: var(--accent);
|
||||
color: white;
|
||||
font-weight: 600;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- header and options for making posts -->
|
||||
<div class="post">
|
||||
<h1 style="margin-bottom: 6px;"><span style="color: var(--accent);">furp</span>social</h1>
|
||||
<h1 style="margin-bottom: 4px;"><span style="color: var(--accent);">furp</span>social</h1>
|
||||
|
||||
<form method="post">
|
||||
<textarea id="body-input" name="body"></textarea>
|
||||
|
|
Reference in a new issue