/Users/johnr/Desktop/IA pdf Downloads/_New Projects Downloads May 7th/CS_IA_Mattew/style.css
  1 * {
  2   box-sizing: border-box;
  3   color:black;
  4   font-family: Georgia, 'Times New Roman', Times, serif;
  5 }
  6 
  7 h1 {
  8   text-align: center;
  9   font-family: "Exo 2",sans-serif;  
 10 }
 11 
 12 h2 {
 13   font-family: "Exo 2",sans-serif; 
 14 }
 15 
 16 .container {
 17   font-size: 24px;
 18   text-align: left;
 19   border-radius: 5px;
 20   background-color: #f2f2f2;
 21   padding: 20px 50px 70px;
 22 }
 23 
 24 input, select{
 25   border: gainsboro;
 26   font-size: 20px;
 27   width: 100%;
 28 }
 29 
 30 #fname, #mname, #lname{
 31   width: 32%;
 32 }
 33 
 34 #arrivalDate, #departureDate {
 35   width: auto;
 36 }
 37 
 38 input:focus {
 39   outline-color: #015fcc;
 40   background-color: lightblue;
 41 }
 42 
 43 input[type=submit], input[type=reset], input[type=button]{
 44   background-color: #4CAF50;
 45   color: white;
 46   padding: 12px 20px;
 47   border-radius: 4px;
 48   cursor: pointer;
 49   float: right;
 50   width: 70%;
 51 }
 52 
 53 input[type=reset], input[type=button]{
 54     background-color: #b84343;
 55     width: 30%;
 56 }
 57 
 58 input[type=submit]:hover{
 59   background-color: #45a049;
 60 }
 61 
 62 input[type=reset]:hover{
 63   background-color: #cc0404;
 64 }
 65 
 66 #numberOfNonGolfers, #numberOfGolfers, #hotelStandard {
 67   width: 5%;
 68 }
 69   
 70 #countryCode {
 71   width: 50px;
 72 }
 73 
 74 #phone {
 75   width: 50%;
 76 }
 77 
 78 .destinations {
 79   font-size: 20px;
 80 }
 81 
 82 .destinations label{
 83   font-size: 16px;
 84 }
 85 
 86 input[type=checkbox]{
 87   width:auto;
 88 }
 89 
 90 .destinations .checkbox-inline {  
 91   width: 210px;
 92   display: inline-block;
 93 }
 94 
 95 .checkbox-inline {
 96   width: auto;
 97   display: inline-block;
 98 }
 99 
100 table {
101   width: 100%;
102   text-align: center;
103   font-size: 20px;
104 }
105 
106 table.spacing {
107   border-spacing: 8px;
108 }
109 
110 .dailyplan {
111   margin: auto;
112   width: 80%;
113   border: 3px solid green;
114   padding: 10px;
115   font-size: 18px;
116 }
117 
118 .dailyplan #daynumber {
119   font-size: 22px;
120   font-style: bold;
121 }
122 
123 .dailyplan select, .dailyplan .teetime{
124   width: auto;
125   font-size: 17px;
126 }
127 
128 
129