Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# Throttlez 2k21 Website
# Ayushpragya 2k23 Website
40 changes: 22 additions & 18 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ html {
* Customize the background color to match your design.
*/

::-moz-selection {
background: #cd2929;
color: #fff;
text-shadow: none;
}

::selection {
background: #cd2929;
color: #fff;
text-shadow: none;
}
::-moz-selection {
background: #cd2929;
color: #fff;
text-shadow: none;
}

::selection {
background: #cd2929;
color: #fff;
text-shadow: none;
}

/*
* A better looking default horizontal rule
Expand Down Expand Up @@ -180,8 +180,10 @@ textarea {

.clearfix:before,
.clearfix:after {
content: " "; /* 1 */
display: table; /* 2 */
content: " ";
/* 1 */
display: table;
/* 2 */
}

.clearfix:after {
Expand All @@ -199,9 +201,9 @@ textarea {
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
/* Style adjustments for high resolution devices */
}

Expand All @@ -212,11 +214,13 @@ textarea {
========================================================================== */

@media print {

*,
*:before,
*:after {
background: transparent !important;
color: #000 !important; /* Black prints faster:
color: #000 !important;
/* Black prints faster:
http://www.sanbeiji.com/archives/953 */
box-shadow: none !important;
text-shadow: none !important;
Expand Down Expand Up @@ -280,4 +284,4 @@ textarea {
h3 {
page-break-after: avoid;
}
}
}
53 changes: 35 additions & 18 deletions css/normalize.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@
*/

html {
font-family: sans-serif; /* 1 */
-ms-text-size-adjust: 100%; /* 2 */
-webkit-text-size-adjust: 100%; /* 2 */
font-family: sans-serif;
/* 1 */
-ms-text-size-adjust: 100%;
/* 2 */
-webkit-text-size-adjust: 100%;
/* 2 */
}

/**
Expand Down Expand Up @@ -55,8 +58,10 @@ audio,
canvas,
progress,
video {
display: inline-block; /* 1 */
vertical-align: baseline; /* 2 */
display: inline-block;
/* 1 */
vertical-align: baseline;
/* 2 */
}

/**
Expand Down Expand Up @@ -254,9 +259,12 @@ input,
optgroup,
select,
textarea {
color: inherit; /* 1 */
font: inherit; /* 2 */
margin: 0; /* 3 */
color: inherit;
/* 1 */
font: inherit;
/* 2 */
margin: 0;
/* 3 */
}

/**
Expand Down Expand Up @@ -288,11 +296,14 @@ select {
*/

button,
html input[type="button"], /* 1 */
html input[type="button"],
/* 1 */
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button; /* 2 */
cursor: pointer; /* 3 */
-webkit-appearance: button;
/* 2 */
cursor: pointer;
/* 3 */
}

/**
Expand Down Expand Up @@ -333,8 +344,10 @@ input {

input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box; /* 1 */
padding: 0; /* 2 */
box-sizing: border-box;
/* 1 */
padding: 0;
/* 2 */
}

/**
Expand All @@ -354,8 +367,10 @@ input[type="number"]::-webkit-outer-spin-button {
*/

input[type="search"] {
-webkit-appearance: textfield; /* 1 */
box-sizing: content-box; /* 2 */
-webkit-appearance: textfield;
/* 1 */
box-sizing: content-box;
/* 2 */
}

/**
Expand Down Expand Up @@ -385,8 +400,10 @@ fieldset {
*/

legend {
border: 0; /* 1 */
padding: 0; /* 2 */
border: 0;
/* 1 */
padding: 0;
/* 2 */
}

/**
Expand Down Expand Up @@ -421,4 +438,4 @@ table {
td,
th {
padding: 0;
}
}
Loading