A basic, barebones web app, intented to be used as a starting point for developing an Isomorphic Go application.

style.css 341B

1234567891011121314151617181920212223242526272829
  1. body {
  2. font-family: arial,helvetica;
  3. font-size: 12pt;
  4. }
  5. #welcomeContainer {
  6. padding-top: 3px;
  7. text-align: center;
  8. }
  9. #welcomeMessage {
  10. margin-top: 54px;
  11. }
  12. #copyright_notice {
  13. display: block;
  14. text-align: center;
  15. margin: 0;
  16. margin-bottom:9px;
  17. width: 100%;
  18. }
  19. #copyright_notice p {
  20. font-size: 9pt;
  21. }
  22. footer {
  23. margin-top: 72px;
  24. }