This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="row" style=" | |
| text-align: right; | |
| color: white; | |
| padding-right: 30px; | |
| ">test</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| div.menu a:focus{ | |
| color:#0091eb !important; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "featureType": "all", | |
| "elementType": "geometry.fill", | |
| "stylers": [ | |
| { | |
| "visibility": "on" | |
| }, | |
| { | |
| "color": "#cf3131" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "data": [ | |
| { | |
| "id": "1", | |
| "pavadinimas": "loremas", | |
| "img": "https://placekitten.com/g/400/200", | |
| "tekstas": "ipsumas" | |
| }, | |
| { | |
| "id": "2", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| static void readFile(string fileName, bool showOutput, out string[][] fileData) | |
| { | |
| string line; | |
| string[] tempData; | |
| fileData = null; | |
| int n = 0; | |
| if (File.Exists(fileName)) { | |
| tempData = File.ReadAllLines(fileName, Encoding.GetEncoding("utf-8")); | |
| foreach(string fileDataElement in tempData) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "item": 1, | |
| "header": { | |
| "price": "12", | |
| "percent": "10" | |
| }, | |
| "Price": { | |
| "current":{ | |
| "upper": "55", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Injectable } from '@angular/core'; | |
| import {Http, Headers} from '@angular/http'; | |
| import 'rxjs/add/operator/map'; | |
| /* | |
| Generated class for the Appdata provider. | |
| See https://angular.io/docs/ts/latest/guide/dependency-injection.html | |
| for more info on providers and Angular 2 DI. | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| section.image-header span { | |
| text-shadow: 0 0 5px rgba(0,0,0,.5); | |
| font-size: 33px; | |
| position: absolute; | |
| text-transform: uppercase; | |
| top: calc(50% - 34px); | |
| left: 30px; | |
| } | |
| section.image-header { | |
| position: relative; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.company; | |
| public class Language { | |
| String name; // Apsirašomas globalus kintamasis | |
| Language() { //konstruktoriaus funkcija | |
| System.out.println("Dėmesio: \t Kviečiamas konstruktorius!"); | |
| } | |
| Language(String t) { | |
| name = t; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class GrandParent { | |
| //klasė kuri yra paveldima parent klasės | |
| int a; | |
| //šie du metodai nėra panaudojami nes perrašomi parent konstruktoriumi | |
| GrandParent(int a) { | |
| this.a = a; | |
| } | |
| GrandParent(String a) { | |
| this.a = a; | |
| } |