File: sample.txt

package info (click to toggle)
highlight.js 9.18.5%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 6,672 kB
  • sloc: javascript: 40,928; python: 342; makefile: 160; sh: 11
file content (45 lines) | stat: -rw-r--r-- 824 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
@-ms-keyframes example {
  from {background-color: red;}
  to {background-color: yellow;}
}
@-o-keyframes example {
  from {background-color: red;}
  to {background-color: yellow;}
}

div.cls {
  color: rgba(51, 170, 51, .1);
  width: calc(100% - 80px);
  transform: rotate(45deg);
}
img {
  filter: grayscale(0.5) blur(10px);
}

a[href*="example"], * [lang^=en] {
  font-size: 2em;
}

@supports (display: flex) {
  @media screen and (min-width: 900px) {
    article {
      display: flex;
    }
  }
}

@media only screen and (orientation: landscape) {
  body {
    background-color: lightblue;
  }
}

@page :first {
    margin: 2cm;
}

@font-face {
    font-family: "Open Sans";
    src: url("/fonts/OpenSans-Regular-webfont.woff2") format("woff2"),
         url("/fonts/OpenSans-Regular-webfont.woff") format("woff");
  }