diff --git a/base_db.sql b/base_db.sql index 180f6e2..9fe877e 100644 --- a/base_db.sql +++ b/base_db.sql @@ -51,4 +51,6 @@ INSERT INTO Categories(Name) VALUES ('Elettronica'),('Networking'),('Telefonia'); INSERT INTO Products(ProductName,Description,CategoryID,Price,ImagePath,StockQuantity) VALUES -('Yealink T31P',NULL,3,'51.21','example/t31p.jpg',104); \ No newline at end of file +('Yealink T31P',"Telefono IP con PoE, Ethernet a 100M, 2 linee",3,'51.21','example/t31p.jpg',104), +('Lenovo ThinkCentre M920q','Mini PC (Ricondizionato) Intel Core i5, 512GB SSD, 16GB RAM, Windows 11 Pro',1,'299','example/tcM920q.jpg',69), +('Mercusys MS116GS Switch 16 Porte','Switch Gigabit 16 Porte, Montaggio Desktop o Rack, Plug & Play, Priorità del Traffico, Prevenzione Loop, Modalità di Isolamento, Funzionamento Silenzioso, Case in Metallo',2,'44.99','example/mercusysMS116GS.jpg',727); \ No newline at end of file diff --git a/img/example/mercusysMS116GS.jpg b/img/example/mercusysMS116GS.jpg new file mode 100644 index 0000000..b13f7e4 Binary files /dev/null and b/img/example/mercusysMS116GS.jpg differ diff --git a/img/example/tcM920q.jpg b/img/example/tcM920q.jpg new file mode 100644 index 0000000..fbd3438 Binary files /dev/null and b/img/example/tcM920q.jpg differ diff --git a/style.css b/style.css index cebf452..d51710d 100644 --- a/style.css +++ b/style.css @@ -1,3 +1,6 @@ +body{ + font-family: Arial, Helvetica, sans-serif; +} .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));