One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| @mixin breakpoint($point) { | |
| @if $point == alpha { | |
| @media (max-width: 1000px) { @content; } | |
| } | |
| @else if $point == beta { | |
| @media (max-width: 1250px) { @content; } | |
| } | |
| @else if $point == gamma { | |
| @media (max-width: 710px) { @content; } | |
| } |
| import './style.css' | |
| // Define an interface for a Pokemon object | |
| interface Pokemon { | |
| name: string; | |
| image: string; // Add more properties as needed | |
| } | |
| // A class for creating HTML elements for Pokemon objects | |
| class PokemonDOM { |
| {"status":"ok","totalResults":0,"articles":[{"title":"Career Horoscope Today, February 8, 2023: Zodiacs may expect career changes - Hindustan Times","author":"Neeraj Dhankher","source":{"Id":null,"Name":"Hindustan Times"},"publishedAt":"2023-02-07T21:30:12Z","url":"https://www.hindustantimes.com/astrology/horoscope/career-horoscope-today-february-8-2023-zodiacs-may-expect-career-changes-101675783158952.html"},{"title":"Raveena Tandon opens up about her broken engagement with Akshay Kumar: People have divorces, what’s the b - Indiatimes.com","author":"etimes.in","source":{"Id":"the-times-of-india","Name":"The Times of India"},"publishedAt":"2023-02-07T20:12:00Z","url":"https://timesofindia.indiatimes.com/entertainment/hindi/bollywood/news/raveena-tandon-opens-up-about-her-broken-engagement-with-akshay-kumar-people-have-divorces-whats-the-big-deal/articleshow/97708635.cms"},{"title":"Thunivu uncensored version streaming on THIS OTT platform - 123telugu","author":null,"source":{"Id":null,"Name":"123telugu.com"}, |
| /** | |
| * hover with animation | |
| */ | |
| article{ | |
| width: 150px; height: 150px; | |
| background: #ede; | |
| display: block | |
| margin: 150px; | |
| overflow:hidden; |
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| div{ | |
| width: 200px; | |
| height: 200px; | |
| background: red; | |
| margin: 80px; | |
| border-radius: 20px; |
| body{ | |
| background: green; | |
| } |
| import ReactDOM from 'react-dom'; | |
| import React, { Component } from 'react'; | |
| import { Provider, connect } from 'react-redux'; | |
| import { createStore, compose } from 'redux'; | |
| const todos = (state = [], action) => { | |
| switch (action.type) { | |
| case 'CREATE_TODO': | |
| return state.concat([action.text]) | |
| default: |
| EXPRESS |
| /** | |
| * Elegant layout | |
| */ | |
| *{ | |
| margin: 0 ; padding: 0; | |
| } | |
| body{ | |
| background: url(http://static.tumblr.com/ajnepim/ERnmskide/pw_maze_white.png); | |
| } |