|
42 | 42 | background-color: transparent;
|
43 | 43 | width: 300px;
|
44 | 44 | height: 300px;
|
| 45 | + margin-bottom: 15px; |
| 46 | + box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.267); |
| 47 | + border-radius: 10px; |
45 | 48 | perspective: 1000px; /* Remove this if you don't want the 3D effect */
|
46 | 49 | box-shadow: var(--box-shadow);
|
47 | 50 | }
|
|
82 | 85 | color: #000000;
|
83 | 86 | transform: rotateY(180deg);
|
84 | 87 | }
|
| 88 | + |
| 89 | +.dev-head { |
| 90 | + font-size: 30px; |
| 91 | + margin: 0; |
| 92 | + text-align: center; |
| 93 | +} |
| 94 | + |
| 95 | +.avatar{ |
| 96 | + display: flex; |
| 97 | + flex-direction: column; |
| 98 | + align-items: center; |
| 99 | +} |
| 100 | + |
| 101 | +.img-avatar { |
| 102 | + border-radius: 15px; |
| 103 | +} |
| 104 | + |
85 | 105 | </style>
|
86 | 106 | </head>
|
87 | 107 | <body>
|
|
91 | 111 | title="Toggle Dark Mode"
|
92 | 112 | aria-pressed="false"
|
93 | 113 | onclick="toggleTheme(this)"
|
94 |
| - class="dark-mode-toggle" |
95 |
| - > |
| 114 | + class="dark-mode-toggle"> |
96 | 115 | <span class="sun">
|
97 | 116 | <img
|
98 | 117 | alt="sun icon that represents light mode"
|
|
106 | 125 | src="images/Dark.png"
|
107 | 126 | /></span>
|
108 | 127 | </button>
|
109 |
| - <h1>Meet The <br> Devs!</h1> |
| 128 | + <h1 class="dev-head">Meet The Devs!</h1> |
110 | 129 | <section style="font-size: 1rem; padding: 20px 0px;">
|
111 |
| - <p> |
112 |
| - <strong>Development is an Art! We tried to be as much abstract as possible. |
113 |
| - Enjoy Take Notes! ❤ 🎊</strong> |
114 |
| - <br /><br /><br /> |
115 |
| - </p> |
| 130 | + <p style="text-align: center;">Development is an Art!<br>We tried to be as much abstract as possible. |
| 131 | + Enjoy Take Notes! ❤ 🎊</p> |
116 | 132 | </section>
|
117 |
| - <section style="font-size: 1rem; padding: 20px 0px;"> |
118 |
| - <center> |
| 133 | + <section class="avatar" style="font-size: 1rem; padding: 20px 0px;"> |
119 | 134 | <div class="flip-card">
|
120 | 135 | <div class="flip-card-inner">
|
121 | 136 | <div class="flip-card-front">
|
122 |
| - <img src="images/Spandan Saxena.jpg" alt="Avatar" style="width:300px;height:300px;"> |
| 137 | + <img src="images/Spandan Saxena.jpg" alt="Avatar" class="img-avatar" style="width:300px;height:300px;"> |
123 | 138 | </div>
|
124 |
| - <div class="flip-card-back"> |
| 139 | + <div class="flip-card-back img-avatar"> |
125 | 140 | <h1>Spandan Saxena</h1>
|
126 |
| - <br> |
127 | 141 | <a href="https://github.com/the-rebooted-coder"><i class="fa fa-github fa-2x"></i></a>
|
128 | 142 | <a href="https://www.linkedin.com/in/spandn/"><i class="fa fa-linkedin fa-2x"></i></a>
|
129 | 143 | <a href="https://spandansaxena.codes"><i class="fa fa-globe fa-2x"></i></a>
|
130 | 144 | </div>
|
131 | 145 | </div>
|
132 | 146 | </div>
|
133 |
| - <br> |
134 | 147 | <div class="flip-card">
|
135 | 148 | <div class="flip-card-inner">
|
136 | 149 | <div class="flip-card-front">
|
137 |
| - <img src="images/Shady.jpeg" alt="Avatar" style="width:300px;height:300px;"> |
| 150 | + <img src="images/Shady.jpeg" alt="Avatar" class="img-avatar" style="width:300px;height:300px;"> |
138 | 151 | </div>
|
139 |
| - <div class="flip-card-back"> |
| 152 | + <div class="flip-card-back img-avatar"> |
140 | 153 | <h1>Shrish Sharma</h1>
|
141 |
| - <br> |
142 | 154 | <a href="https://github.com/shrish-sharma-git"><i class="fa fa-github fa-2x"></i></a>
|
143 | 155 | <a href="https://www.linkedin.com/in/shrish-sharma"><i class="fa fa-linkedin fa-2x"></i></a>
|
144 | 156 | <a href="https://shrish-sharma-git.github.io/My-Portfolio/"><i class="fa fa-globe fa-2x"></i></a>
|
145 | 157 | </div>
|
146 | 158 | </div>
|
147 | 159 | </div>
|
148 |
| - </center> |
149 |
| - <br><br> |
150 |
| - <center> |
151 |
| - <b>Thank you for using Take Notes App |
152 |
| - Remember: There's no alternative to handwritten notes!</b> |
153 |
| - </center> |
| 160 | + <p style="text-align: center;">Thank you for using Take Notes App |
| 161 | + Remember: There's no alternative to handwritten notes!</p> |
154 | 162 | </section>
|
155 |
| - <!-- Home Button --> |
156 |
| - <button> |
157 |
| - <a href="./take-notes.html"><i class="fa fa-home fa-2x" style="height: 25px; width: 25px"></i></a> |
158 |
| - </button> |
159 | 163 | </main>
|
160 | 164 |
|
161 | 165 |
|
|
0 commit comments