diff options
| author | Adam T. Carpenter <atc@53hor.net> | 2021-06-23 22:12:39 -0400 | 
|---|---|---|
| committer | Adam T. Carpenter <atc@53hor.net> | 2021-06-23 22:12:39 -0400 | 
| commit | 470d29ca5830db6850d11298a19aa9b7ff9615d7 (patch) | |
| tree | e0c5a29ea7ff519675a5c4eb34e956a515c4218c /desktop.css | |
| parent | 47352856e40e471a8ce05875fa25a0428ddb5d94 (diff) | |
| download | carpentertutoring-470d29ca5830db6850d11298a19aa9b7ff9615d7.tar.xz carpentertutoring-470d29ca5830db6850d11298a19aa9b7ff9615d7.zip | |
added about, updated policies, broke out header and footer, finished up
offering tiles/modals
Diffstat (limited to 'desktop.css')
| -rw-r--r-- | desktop.css | 53 | 
1 files changed, 52 insertions, 1 deletions
| diff --git a/desktop.css b/desktop.css index 029d7e6..16360c3 100644 --- a/desktop.css +++ b/desktop.css @@ -1,5 +1,8 @@ -/* Desktop Layout */  @media only screen and (min-width: 800px) { +  section { +    padding: 3em; +  } +    nav {      flex-direction: row-reverse;      margin: 0; @@ -18,4 +21,52 @@        rgba(255, 255, 255, 1) 50%      );    } + +  form { +    margin-right: 10%; +    margin-left: 10%; +  } + +  table td, +  table th { +    padding: 1em; +  } + +  section.flexible { +    flex-direction: row; +  } + +  section.flexible div, +  section.flexible figure { +    flex-basis: 0; +  } + +  section.flexible div { +    flex-grow: 2; +  } + +  section.flexible figure { +    flex-grow: 1; +  } + +  .signature img { +    width: 30%; +  } + +  .logo img { +    width: 15%; +    display: block; +    margin-left: auto; +    margin-right: auto; +  } + +  #offerings .card { +    display: block; +    flex: none; +    width: 20%; +  } + +  .modal .card { +    width: 25%; +  }  } |