Skip to content

Instantly share code, notes, and snippets.

@makone93
makone93 / Calendar.java
Created April 18, 2021 09:51 — forked from mehmetbebek/Calendar.java
Fazilet Calendar
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package takvim;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
@makone93
makone93 / css-media-queries-cheat-sheet.css
Created May 27, 2020 16:58 — forked from bartholomej/css-media-queries-cheat-sheet.css
CSS Media Query Cheat Sheet (with Foundation)
/*------------------------------------------
Responsive Grid Media Queries - 1280, 1024, 768, 480
1280-1024 - desktop (default grid)
1024-768 - tablet landscape
768-480 - tablet
480-less - phone landscape & smaller
--------------------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1280px) { }
@media all and (min-width: 768px) and (max-width: 1024px) { }
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.button {
border-radius: 4px;
background-color: #f4511e;
border: none;
color: #FFFFFF;