commit ac3a0afda88ba966dd0a327347f960db0d8a92a2 Author: Troy Amelotte Date: Tue Aug 29 11:43:36 2017 -0700 initial diff --git a/index.html b/index.html new file mode 100644 index 0000000..5f673e7 --- /dev/null +++ b/index.html @@ -0,0 +1,41 @@ + + + + + Airlines!! + + + +
+

PUERTO RICO AIRLINES

+ +
+
+
+

Flights

+

Come check out or sweet flights! Direct flights available daily!

+ +
+
+

Group Trips

+

We offer great group rates! For families with 4 members to huge gatherings with 50+!

+ +
+
+

Discount Flights

+

Discount flights available for individuals! Single chair filler tickets for low rates!

+ +
+
+

About us

+

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

+ +
+
+ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..68c5066 --- /dev/null +++ b/style.css @@ -0,0 +1,71 @@ +*{ + font-family: sans-serif; + margin: 0; +} +header{ + width:100%; + padding:3%; + background-color: #FFDBAA; + letter-spacing: 2px; + border-bottom: 1px solid black; +} +#menu{ + display: inline-block; + margin-left:15%; +} +#menu button{ + display: inline-block; + height:25px; + background: #805215; + color:white; + border-style: none; + margin-left:30px; + height:50px; + width:100px; + font-weight: 800; + font-size: 18px; +} +h1{ + display: inline-block; + color:#553100; +} +#main{ + background: #D4A76A; + height:100vh; +} +.card{ + display:inline-block; + background:white; + width:20%; + margin-left: 8%; + margin-top:30px; + height: 150px; + vertical-align: top; + padding:15px; + -webkit-box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.75); + -moz-box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.75); + box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.75); +} +.card h3{ + text-align: center; +} +.card p{ + margin-top:10px; + height:45px; +} +.card button{ + margin-top:4vh; + vertical-align: top; + width:100%; + height:50px; + background: #805215; + color:white; + border-style: none; + font-weight: 800; + font-size: 18px; + border: 1px solid black; +} +.large-card{ + width:90%; + margin-left:5%; +}