Countdown to irna's birthday :
23 |-
24 |
25 |
- Hours 26 |
- Minutes 27 |
- Seconds 28 |
71 | Ketuk untuk 74 | melanjutkan
75 | 76 | 86 | 87 |├── _config.yml ├── .gitattributes ├── Assets ├── img1.png ├── 38030.jpg └── foto.jpeg ├── style.css ├── index.html └── script.js /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /Assets/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamMukti/ProjekUltah/HEAD/Assets/img1.png -------------------------------------------------------------------------------- /Assets/38030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamMukti/ProjekUltah/HEAD/Assets/38030.jpg -------------------------------------------------------------------------------- /Assets/foto.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamMukti/ProjekUltah/HEAD/Assets/foto.jpeg -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | 2 | body, 3 | html { 4 | height: 100%; 5 | font-family: 'Quicksand', sans-serif; 6 | text-align: center; 7 | } 8 | 9 | .bg { 10 | /* Location of the image */ 11 | background-image: url(Assets/38030.jpg); 12 | background-position: center center; 13 | background-repeat: no-repeat; 14 | background-attachment: fixed; 15 | 16 | /* This is what makes the background image rescale based 17 | on the container's size */ 18 | background-size: cover; 19 | 20 | /* Set a background color that will be displayed 21 | while the background image is loading */ 22 | background-color: #FEC0CD; 23 | height: 100%; 24 | } 25 | 26 | 27 | .img { 28 | display: inline-block; 29 | margin-left: auto; 30 | margin-right: auto; 31 | position: relative; 32 | top: 20px; 33 | margin-bottom: 30px; 34 | width: 350px; 35 | } 36 | 37 | #tap { 38 | display: inline-block; 39 | } 40 | 41 | .foto { 42 | width: 80%; 43 | max-width: 400px; 44 | min-width: 300px; 45 | margin-top: 100px; 46 | /* margin-left: auto; 47 | margin-right: auto; 48 | margin-bottom: 20px; */ 49 | display: inline-block; 50 | /* vertical-align: middle; 51 | line-height: normal; */ 52 | } 53 | 54 | 55 | 56 | /* Paper */ 57 | @import url(https://fonts.googleapis.com/css?family=Roboto); 58 | @import url(https://fonts.googleapis.com/css?family=Handlee); 59 | 60 | 61 | .paper { 62 | font-family: 'Roboto', sans-serif; 63 | position: relative; 64 | width: 90%; 65 | max-width: 800px; 66 | min-width: 300px; 67 | height: 540px; 68 | margin: 50px auto; 69 | display: inline-block; 70 | vertical-align: middle; 71 | line-height: normal; 72 | background: #fafafa; 73 | border-radius: 10px; 74 | box-shadow: 0 2px 8px rgba(0, 0, 0, .3); 75 | overflow: hidden; 76 | } 77 | 78 | .paper:before { 79 | content: ''; 80 | position: absolute; 81 | top: 0; 82 | bottom: 0; 83 | left: 5px; 84 | width: 45px; 85 | background: radial-gradient(#616161 6px, transparent 7px) repeat-y; 86 | background-size: 30px 30px; 87 | border-right: 3px solid #D44147; 88 | box-sizing: border-box; 89 | } 90 | 91 | .paper-content { 92 | position: absolute; 93 | top: 30px; 94 | right: 0; 95 | bottom: 30px; 96 | left: 50px; 97 | background: linear-gradient(transparent, transparent 28px, #91D1D3 28px); 98 | background-size: 30px 30px; 99 | } 100 | 101 | .paper-content .teks { 102 | text-align: left; 103 | width: 100%; 104 | max-width: 100%; 105 | height: 100%; 106 | max-height: 100%; 107 | line-height: 30px; 108 | padding: 0 10px; 109 | border: 0; 110 | outline: 0; 111 | background: transparent; 112 | color: #3f3f44; 113 | font-family: 'Handlee', cursive; 114 | font-size: 18px; 115 | box-sizing: border-box; 116 | z-index: 1; 117 | } 118 | 119 | .kotak { 120 | position: relative; 121 | width: 90%; 122 | max-width: 550px; 123 | min-width: 200px; 124 | max-height: 350px; 125 | min-height: 100px; 126 | top: 300px; 127 | padding: 20px 0; 128 | display: inline-block; 129 | background: #fafafa; 130 | border-radius: 10px; 131 | box-shadow: 0 2px 8px rgba(0, 0, 0, .3); 132 | overflow: hidden; 133 | } 134 | 135 | .btn { 136 | border-radius: 40px; 137 | } 138 | 139 | #slideLima { 140 | position: relative; 141 | top: 300px; 142 | } 143 | 144 | #trims { 145 | position: relative; 146 | top: 300px; 147 | display: inline-block; 148 | } 149 | 150 | h1 { 151 | font-weight: normal; 152 | } 153 | 154 | li { 155 | display: inline-block; 156 | font-size: 16px; 157 | list-style-type: none; 158 | position: relative; 159 | left: -20px; 160 | margin-top: 10px; 161 | padding: 10px; 162 | text-transform: uppercase; 163 | } 164 | 165 | li span { 166 | display: block; 167 | font-size: 24px; 168 | } 169 | 170 | body { 171 | -webkit-box-align: center; 172 | -ms-flex-align: center; 173 | align-items: center; 174 | } 175 | 176 | .container { 177 | color: #333; 178 | position: relative; 179 | top: 250px; 180 | padding: 0; 181 | text-align: center; 182 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 12 | 13 | 14 | 15 |
71 | Ketuk untuk 74 | melanjutkan
75 | 76 | 86 | 87 |