-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
31969c7
commit ee74354
Showing
3 changed files
with
103 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
* { | ||
box-sizing: border-box; | ||
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", | ||
"Lucida Sans Unicode", Geneva, Verdana, sans-serif; | ||
} | ||
|
||
html, | ||
body { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
body { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
} | ||
|
||
h1, | ||
h2, | ||
h3, | ||
h4 { | ||
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", | ||
"Lucida Sans", Arial, sans-serif; | ||
} | ||
|
||
#app { | ||
background-color: #ddd; | ||
padding: 20px; | ||
border-radius: 10px; | ||
box-shadow: 0px 1px 20px 0px rgb(0 0 0 / 50%); | ||
height: 80%; | ||
width: 50%; | ||
} | ||
|
||
main { | ||
height: 60%; | ||
} | ||
|
||
h1 { | ||
margin-top: 0; | ||
padding-bottom: 20px; | ||
border-bottom: 5px solid #80808054; | ||
} | ||
|
||
a { | ||
color: rgb(233, 109, 130); | ||
text-decoration: none; | ||
} | ||
|
||
form { | ||
display: flex; | ||
} | ||
|
||
form input { | ||
flex: 1; | ||
padding: 5px; | ||
border-radius: 5px; | ||
border: 0; | ||
margin-right: 5px; | ||
} | ||
|
||
button { | ||
background-color: rgb(233, 109, 130); | ||
color: white; | ||
border: 2px solid white; | ||
border-radius: 5px; | ||
} | ||
|
||
ul { | ||
padding: 0; | ||
overflow-y: scroll; | ||
height: 100%; | ||
} | ||
|
||
ul li { | ||
list-style: none; | ||
} | ||
|
||
label { | ||
cursor: pointer; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Todo App !</title> | ||
<link rel="stylesheet" href="css/styles.css" /> | ||
</head> | ||
|
||
<body> | ||
<div id="app"> | ||
<h1>La Todo App</h1> | ||
|
||
<main></main> | ||
</div> | ||
</body> | ||
|
||
</html> |
Empty file.