commit a9bf5d12cc44fc4a74ece006e3d47bf070f13f79 Author: M. Gardner Date: Wed Jan 29 13:43:00 2020 +0200 initial commit diff --git a/gen.php b/gen.php new file mode 100644 index 0000000..6257327 --- /dev/null +++ b/gen.php @@ -0,0 +1,18 @@ + diff --git a/ideas.php b/ideas.php new file mode 100644 index 0000000..931f929 --- /dev/null +++ b/ideas.php @@ -0,0 +1,54 @@ + + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, + * MA 02110-1301, USA. + * + * + */ + +?> + + + + + + <?php echo $title;?> + + + + + + +
+

+
+
+ +
+
+
+
+ + + diff --git a/style.scss b/style.scss new file mode 100644 index 0000000..ad78ecd --- /dev/null +++ b/style.scss @@ -0,0 +1,44 @@ +html{ + // background-color:#610045; + background-color:#1b0061; + min-height:100%; +} + +body{ + min-height:100%; +} + +.container{ + padding:5em; + display:grid; + grid-template-columns:45% auto 45%; + grid-template-rows:45% auto 45%; + min-height:100%; + height:100%; +} + +#r1{ + grid-row-start:1; + grid-row-end:1; + grid-column-start:2; + grid-column-end:2; + min-height:100%; +} + +#r2{ + grid-row-start:3; + grid-row-end:3; + min-height:100%; +} + +.idea{ + div{ + padding:2em; + background-color:#00611b; + color:#eeffa8; + } + grid-column-start:2; + grid-column-end:2; + grid-row-start:2; + grid-row-end:2; +}