Skip to content

Instantly share code, notes, and snippets.

<div class="row" style="
text-align: right;
color: white;
padding-right: 30px;
">test</div>
div.menu a:focus{
color:#0091eb !important;
}
[
{
"featureType": "all",
"elementType": "geometry.fill",
"stylers": [
{
"visibility": "on"
},
{
"color": "#cf3131"
{
"data": [
{
"id": "1",
"pavadinimas": "loremas",
"img": "https://placekitten.com/g/400/200",
"tekstas": "ipsumas"
},
{
"id": "2",
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)
[
{
"item": 1,
"header": {
"price": "12",
"percent": "10"
},
"Price": {
"current":{
"upper": "55",
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.
*/
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;
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;
}
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;
}