Added files
This commit is contained in:
52
css/_style.css
Normal file
52
css/_style.css
Normal file
@@ -0,0 +1,52 @@
|
||||
:root {
|
||||
--background-color: #1c1c1c;
|
||||
--primary: #e3e3e3;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--background-color);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
main {
|
||||
display: grid;
|
||||
min-height: 100vh;
|
||||
place-items: center;
|
||||
}
|
||||
|
||||
header {
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
/*#file {
|
||||
display: block;
|
||||
border: 1px solid white;
|
||||
border-radius: 100vw;
|
||||
|
||||
width: 400px;
|
||||
height: 400px;
|
||||
|
||||
background-color: white;
|
||||
}*/
|
||||
|
||||
#input {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#upload {
|
||||
display: block;
|
||||
border: 1px solid var(--primary);
|
||||
border-radius: 100vw;
|
||||
|
||||
width: 400px;
|
||||
height: 400px;
|
||||
|
||||
background-color: var(--primary);
|
||||
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#upload > span {
|
||||
font-size: 2em;
|
||||
color: var(--background-color);
|
||||
}
|
||||
Reference in New Issue
Block a user