File: styles.css

package info (click to toggle)
node-regjsparser 0.12.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 488 kB
  • sloc: javascript: 1,196; makefile: 9
file content (93 lines) | stat: -rw-r--r-- 1,337 bytes parent folder | download | duplicates (4)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
html, textarea, input {
  font: .8em/1.6 sans-serif;
}

body {
  max-width: 40em;
  padding: 0 1em;
}

h1 {
  text-align: center;
  font-size: 1.3em;
  margin: 0 0 .5em;
  padding-top: 1em;
}

h2 {
  font-size: 1em;
}

a {
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #aaa;
  padding: .1em .2em;
}

a:hover, a:focus {
  color: #fff;
  border-color: #036;
  background: #36c;
}

textarea, input {
  font-family: Monaco, Consolas, monospace;
}

#footer {
  margin-top: 2em;
  text-align: center;
}

textarea, input {
  border: 3px double green;
  background: #90ee90;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  margin: 0 .5em;
  padding: .5em;
  resize: vertical;
}

textarea {
  display: block;
  width: 100%;
  min-height: 14.5em;
  margin: 1em 0 .5em;
  padding: .7em;
}

code {
  font-family: Monaco, Consolas, monospace;
  font-size: .9em;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.invalid, :invalid {
  border-color: red;
  background: #ffb6c1;
}

@media (min-width: 42em) {

  html {
    font-size: 1.2em;
    background: #c4c4c4;
    height: 100%;
  }

  body {
    margin: 0 auto;
    padding: 0 2em;
    min-height: 100%;
    background: #fff;
    border: solid #aaa;
    border-width: 0 1px;
  }

}