-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
{{item.name}}
{{item.teacher}}
Credits:{{item.credits}}
+
+
+
+
+
+
@@ -75,4 +164,68 @@ const cursus=[
border-radius:20px;
margin-bottom:10px;
}
+
+.modify{
+ font-size:25px;
+ padding:10px 10px 10px 10px;
+ background-color: rgb(239,60,168);
+ cursor: pointer;
+ border:none;
+ border-radius:15px;
+}
+
+ input, select{
+
+ font-size:25px;
+ cursor: pointer;
+ border:none;
+ border-radius:15px;
+ }
+ button{
+ font-size:15px;
+ height:50px;
+ width:100px;
+ border:none;
+ border-radius:20px;
+
+ }
+
+ .buttonGrid{
+ display:grid;
+ grid-template-columns: auto auto;
+ column-gap:50px;
+ grid-template-areas:
+ "create delete";
+ }
+
+ .create{
+ grid-area:create;
+
+ background-color:rgb(0,200,0);
+
+ }
+
+ .delete{
+ grid-area:delete;
+ background-color:rgb(200,0,0);
+ }
+
+ .listTitle{
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width:400px;
+ margin-left:auto;
+ margin-right:auto;
+ border:2px solid black;
+ font-size:25px;
+ color:white;
+ padding:20px;
+ background-color:rgb(50,50,50);
+ border-radius:20px;margin-bottom:10px;
+
+ button:hover{
+ opacity:0.8;
+ }
+}