|
| 1 | +*{ |
| 2 | + margin: 0%; |
| 3 | + padding: 0%; |
| 4 | + box-sizing: border-box; |
| 5 | +} |
| 6 | +html,body{ |
| 7 | + height: 100%; |
| 8 | + width: 100%; |
| 9 | + overflow: hidden; |
| 10 | +} |
| 11 | +#main{ |
| 12 | + display: flex; |
| 13 | + height: 100%; |
| 14 | + width: 100%; |
| 15 | +} |
| 16 | +#left{ |
| 17 | + position: relative; |
| 18 | + width: 30%; |
| 19 | + height: 100%; |
| 20 | + background-color: rgb(158, 211, 240); |
| 21 | + |
| 22 | +} |
| 23 | +#right{ |
| 24 | + width: 70%; |
| 25 | + height: 100%; |
| 26 | + background-color:rgba(255, 68, 0, 0.607); |
| 27 | +} |
| 28 | +#leftbottom{ |
| 29 | + background-color: white; |
| 30 | + position: absolute; |
| 31 | + bottom: 0%; |
| 32 | + width: 100%; |
| 33 | + height: 35%; |
| 34 | + display: flex; |
| 35 | + align-items: center; |
| 36 | + padding: 0px 60px; |
| 37 | + |
| 38 | +} |
| 39 | +#right>img{ |
| 40 | + width: 78%; |
| 41 | + position: absolute; |
| 42 | + bottom: 0%; |
| 43 | + left: 10%; |
| 44 | +} |
| 45 | +#nav{ |
| 46 | + justify-content: space-between; |
| 47 | + align-items: center; |
| 48 | + display: flex; |
| 49 | + width: 90%; |
| 50 | + left: 5%; |
| 51 | + position: absolute; |
| 52 | + height: 70px; |
| 53 | + |
| 54 | +} |
| 55 | +#nav>h1{ |
| 56 | + color: rgb(255, 255, 255); |
| 57 | + font-size: 55px; |
| 58 | + font-family: Gilroy; |
| 59 | + letter-spacing: 4px; |
| 60 | + font-weight: 400; |
| 61 | + z-index: 999999; |
| 62 | + |
| 63 | +} |
| 64 | +#panel{ |
| 65 | + padding-left: 70px; |
| 66 | + width: 30%; |
| 67 | + display: flex; |
| 68 | + justify-content: space-between; |
| 69 | +} |
| 70 | +#panel a{ |
| 71 | + |
| 72 | + text-decoration: none; |
| 73 | + color: rgb(255, 255, 255); |
| 74 | + font-size: 20px; |
| 75 | + font-family: oswald; |
| 76 | +} |
| 77 | +#blend{ |
| 78 | + position: absolute; |
| 79 | + mix-blend-mode:color-burn; |
| 80 | + color: rgba(0, 0, 0, 0.97); |
| 81 | + font-size: 180px; |
| 82 | + rotate: 27deg; |
| 83 | + top: 90%; |
| 84 | + left: 50%; |
| 85 | + transform: translate(-50%,-50%); |
| 86 | + letter-spacing: 50px; |
| 87 | + font-family: Anurati; |
| 88 | +} |
| 89 | +#left>h1{ |
| 90 | + position: absolute; |
| 91 | + color: white; |
| 92 | + font-size: 120px; |
| 93 | + font-family: GIlroy; |
| 94 | + top: 20%; |
| 95 | + left: 20%; |
| 96 | + letter-spacing: 30px; |
| 97 | +} |
| 98 | + |
| 99 | +#left>h2{ |
| 100 | + padding-top: 10px; |
| 101 | + position: absolute; |
| 102 | + color: white; |
| 103 | + font-size: 30px; |
| 104 | + font-family: GIlroy; |
| 105 | + top: 36%; |
| 106 | + left: 20%; |
| 107 | + letter-spacing: 10px; |
| 108 | + text-decoration: underline; |
| 109 | +} |
| 110 | +#left>h3{ |
| 111 | + padding-top: 30px; |
| 112 | + position: absolute; |
| 113 | + color: white; |
| 114 | + font-size: 20px; |
| 115 | + font-family: GIlroy; |
| 116 | + top: 40%; |
| 117 | + left: 20%; |
| 118 | + font-weight: 300; |
| 119 | + letter-spacing: 2px; |
| 120 | +} |
| 121 | +#left>a{ |
| 122 | + padding-top: 30px; |
| 123 | + position: absolute; |
| 124 | + color: rgba(255, 68, 0, 0.607); |
| 125 | + font-size: 30px; |
| 126 | + font-family: GIlroy; |
| 127 | + top: 48%; |
| 128 | + left: 20%; |
| 129 | + font-weight: 900; |
| 130 | + letter-spacing: 2px; |
| 131 | + text-decoration: none; |
| 132 | +} |
| 133 | +#img{ |
| 134 | + overflow: hidden; |
| 135 | + position:relative; |
| 136 | + height: 160px; |
| 137 | + width: 250px; |
| 138 | + background-color: rgba(255, 255, 255, 0.057); |
| 139 | + top: 15%; |
| 140 | + left: 70%; |
| 141 | + display: flex; |
| 142 | + justify-content: space-between; |
| 143 | +} |
| 144 | +.image{ |
| 145 | + height: 90%; |
| 146 | + width: 48%; |
| 147 | +} |
| 148 | +.image img{ |
| 149 | + width: 100%; |
| 150 | + height: 100%; |
| 151 | + object-fit: cover; |
| 152 | +} |
| 153 | +#icon{ |
| 154 | + height: 150px; |
| 155 | + padding:10px 20px; |
| 156 | + width: 40px; |
| 157 | + display: flex; |
| 158 | + flex-direction: column; |
| 159 | + justify-content: space-between; |
| 160 | + align-items: center; |
| 161 | + border: 0px; |
| 162 | + border-radius: 20px; |
| 163 | + font-size: 25px; |
| 164 | + background-color: rgba(255, 255, 255, 0.292); |
| 165 | + left: 93%; |
| 166 | + top: 40%; |
| 167 | + position: absolute; |
| 168 | + color: white; |
| 169 | +} |
| 170 | + |
0 commit comments