Skip to content

Instantly share code, notes, and snippets.

View DanyEscobar's full-sized avatar

Dany Alexander Escobar Parrado DanyEscobar

View GitHub Profile
.container-drawer-notifications {
transform: translateX(150%);
.drawer-notifications {
padding: 0px;
.drawer-header {
padding: 20px 25px;
background-color: $light-blue;
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-notifications-side-menu',
templateUrl: './notifications-side-menu.component.html',
styleUrls: ['./notifications-side-menu.component.scss']
})
export class NotificationsSideMenuComponent implements OnInit {
constructor() { }
<div class="container-drawer container-drawer-notifications position-fixed d-flex" id="drawer-notifications">
<div class="drawer-overlay w-100 vh-100" (click)="toggleMenu('notifications')"></div>
<div class="drawer drawer-notifications vh-100 bg-white" (click)="stopPropagation($event)">
<div class="d-flex justify-content-between align-items-center drawer-header">
<p class="txt-title">NOTIFICACIONES</p>
<i class="las la-long-arrow-alt-right" (click)="toggleMenu('notifications')"></i>
</div>
<div class="info-notifications d-flex align-items-center mt-4">
<div class="d-flex align-items-start">
@DanyEscobar
DanyEscobar / Calculo de areas y perimetros (Estructurado)
Created February 14, 2017 05:07
Usando el paradigma de la programación estructurada
package prueba;
import java.util.Scanner;
import javax.swing.JOptionPane;
public class prueba {
static double b,a, aR, pR;//Variables del Rectangulo
import java.util.Scanner;
public class Arreglos {
public static void main(String[] args) {
double[] notas = new double [7];
Scanner leer=new Scanner(System.in);
int i;
double prom=0.0;