File: css_input_without_import.css

package info (click to toggle)
drupal7 7.52-2%2Bdeb9u11
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 21,756 kB
  • sloc: php: 44,022; pascal: 42,649; javascript: 31,405; sh: 1,685; xml: 466; makefile: 21; sql: 1
file content (69 lines) | stat: -rw-r--r-- 1,154 bytes parent folder | download | duplicates (12)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69

/**
 * @file Basic css that does not use import
 */


body {
  margin: 0;
  padding: 0;
  background: #edf5fa;
  font: 76%/170% Verdana, sans-serif;
  color: #494949;
}

.this .is .a .test {
  font: 1em/100% Verdana, sans-serif;
  color: #494949;
}

/**
 * CSS spec says that all whitespace is valid whitespace, so this selector
 * should be just as good as the one above.
 */
.this
.is
.a
.test {
font: 1em/100% Verdana, sans-serif;
color: #494949;
}

some :pseudo .thing {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  filter: progid:DXImageTransform.Microsoft.Shadow(color=#000000, direction='180', strength='10');
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(color=#000000, direction='180', strength='10')";
}

::-moz-selection {
  background: #000;
  color:#fff;

}
::selection {
  background: #000;
  color: #fff;
}

@media print {
  * {
    background: #000 !important;
    color: #fff !important;
  }
  @page {
    margin: 0.5cm;
  }
}

@media screen and (max-device-width: 480px) {
  background: #000;
  color: #fff;
}

textarea, select {
  font: 1em/160% Verdana, sans-serif;
  color: #494949;
}