Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.48 KB | None | 0 0
  1. * {
  2.   font-family:Georgia;
  3. }
  4. a {
  5.     text-decoration: none;
  6. }
  7. .topbar {
  8.     height: 62px;
  9.     background-color: #6f7682;
  10.     display: -webkit-flex;
  11. }
  12. .topbarlist {
  13.     display: -webkit-flex;
  14.     justify-content: space-between;
  15.     align-content: flex-start;
  16.     margin-top:15px;
  17. }
  18. .topbar ul {
  19.     list-style-type: none;
  20.     width: 100vh;
  21. }
  22. .topbar li {
  23.     display: inline;
  24. }
  25. .topbar a {
  26.         border-left: 1px solid white;
  27.         color: white;
  28.         font-size: 16px;
  29. }
  30. .topbar li:hover {
  31.     background-color: #2f3133;
  32. }
  33. .signup {
  34.    display:inline;
  35.    font-size:25px;
  36.    margin-left:1200px;
  37.    margin-top:30px;
  38. }
  39. .signup a {
  40.     display:inline;
  41. }
  42. .page1 img {
  43.     margin: auto;
  44. }
  45. .flank {
  46. }
  47. .text1 {
  48.    text-align:right;
  49. }
  50. button {
  51.     height: 100px;
  52.     width: 200px;
  53.     background-color: #ff8b23;
  54.     color: white;
  55.     border: 4px solid white;
  56.     border-radius: 15px;
  57. }
  58. button:hover {
  59.         background-color: transparent;
  60.         color: black;
  61.         border: 4px solid black;
  62.         border-radius: 0px;
  63. }
  64. hr {
  65.     color: #919191;
  66. }
  67. h1 {
  68.    font-size:150px;
  69.    text-align:center;
  70.    display:-webkit-flex;
  71.    flex-direction:row;
  72.    justify-content:center;
  73.    margin-top:-20px;
  74.    font-weight:500;
  75. }
  76. .page2 {
  77.     width:100vh;
  78.     height:100vh;
  79.     display: -webkit-flex;
  80.     flex-direction: column;
  81.     align-content: center;
  82.     justify-content:space-around;
  83. }
  84. .page2 span {
  85.     font-size:30px;
  86.     margin-top:-100px;
  87. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement