├── .DS_Store ├── README.md ├── css └── style.css ├── img ├── ayrac1.jpg ├── ico │ ├── eng.png │ └── tur.png ├── resim1.jpg ├── resim2.jpg ├── resim3.jpg ├── resim4.jpg ├── saturn.gif └── star.jpg ├── index.html └── pages ├── .DS_Store ├── database.mdb ├── galaxy.html ├── news.html ├── order.asp ├── satislar.asp ├── satislar.ldb ├── satislar.mdb ├── sign.asp └── users.mdb /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | 2 | body 3 | { 4 | background-color: black; 5 | } 6 | 7 | a 8 | { 9 | text-decoration: none; 10 | } 11 | 12 | .menu ul 13 | { 14 | list-style-type: none; 15 | } 16 | 17 | .menu ul li 18 | { 19 | float: right; 20 | 21 | } 22 | 23 | .satislar 24 | { 25 | margin-left: 40%; 26 | } 27 | .menu ul li a 28 | { 29 | 30 | font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; 31 | display: block; 32 | padding-left: 70px; 33 | width: 90px; 34 | transition: 1s; 35 | padding-right: 70px; 36 | padding-top: 1px; 37 | text-align: center; 38 | color: white; 39 | text-decoration: none; 40 | 41 | } 42 | .menu ul li a:hover 43 | { 44 | transition: 1s; 45 | cursor: pointer; 46 | color: red; 47 | 48 | } 49 | 50 | 51 | 52 | hr 53 | { 54 | opacity: 0.3; 55 | border: solid 0.1px white; 56 | 57 | } 58 | 59 | .icerik1 60 | { 61 | width: 100vw; 62 | height: 50vw; 63 | background-color: #000000; 64 | } 65 | 66 | 67 | 68 | .icerik1 span 69 | { 70 | color: white; 71 | font-size: 1.4vw; 72 | position: absolute; 73 | top: 550px; 74 | left: 45vw; 75 | border: solid 0.5px white; 76 | padding: 10px; 77 | transition: 1s; 78 | animation-duration: 3s; 79 | animation-name: slidein1; 80 | } 81 | @keyframes slidein1 { 82 | from { 83 | top: 700px; 84 | 85 | } 86 | 87 | to { 88 | top: 550px; 89 | 90 | 91 | } 92 | 93 | } 94 | 95 | .icerik1 span:hover 96 | { 97 | background-color: rgb(255, 255, 255); 98 | opacity: 1; 99 | transition: 1s; 100 | cursor: pointer; 101 | color: #000000; 102 | } 103 | 104 | h1 105 | { 106 | animation-duration: 3s; 107 | animation-name: slidein2; 108 | } 109 | 110 | @keyframes slidein2 { 111 | from { 112 | top: 60%; 113 | width: 300%; 114 | } 115 | 116 | to { 117 | top: 20vw; 118 | width: 400%; 119 | 120 | 121 | } 122 | 123 | 124 | 125 | } 126 | 127 | h2,p 128 | { 129 | animation-duration: 3s; 130 | animation-name: slidein3; 131 | 132 | 133 | } 134 | 135 | @keyframes slidein3 { 136 | from { 137 | margin-left: 16%; 138 | 139 | } 140 | 141 | to { 142 | margin-left: 0%; 143 | 144 | } 145 | 146 | 147 | } 148 | 149 | table tr { 150 | color: white; 151 | 152 | } 153 | 154 | td 155 | { 156 | padding-top: 0px; 157 | background-color: rgba(0, 0, 0, 0.281); 158 | 159 | } 160 | th 161 | { 162 | color: red; 163 | } 164 | -------------------------------------------------------------------------------- /img/ayrac1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/img/ayrac1.jpg -------------------------------------------------------------------------------- /img/ico/eng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/img/ico/eng.png -------------------------------------------------------------------------------- /img/ico/tur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/img/ico/tur.png -------------------------------------------------------------------------------- /img/resim1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/img/resim1.jpg -------------------------------------------------------------------------------- /img/resim2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/img/resim2.jpg -------------------------------------------------------------------------------- /img/resim3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/img/resim3.jpg -------------------------------------------------------------------------------- /img/resim4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/img/resim4.jpg -------------------------------------------------------------------------------- /img/saturn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/img/saturn.gif -------------------------------------------------------------------------------- /img/star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/img/star.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |The space. Amazing infinity darkness.Sounds fear but into this darkness maybe some homes is waiting for us. Each Galaxy have billions stars.Why don't you have one of them? Lets make a dream to real!
If you want to buy a star what kind would you choose? a red giant? , yellow dwarf? blue or white star? Choose what ever you want it's will be your homeland in space!
44 |
45 | Our Sponsor