aboutsummaryrefslogtreecommitdiffstats
path: root/style.css
blob: 27d60c459ce1afb1a1c16ed6c968d0690930e885 (plain)
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
/************************************************************
** style.css 2021 monaco
** Style css for KISSmo Paste
** Copyright monaco@ircnow.org
** Copyright Ircnow
** This file is part of KISSmo Paste.
************************************************************/

body {
background: whitesmoke;
font-family: monospace;
}
span.error {
display: block;
padding: 5px;
background: red;
color: white;
}
span.hidden {
visibility: hidden;
padding: 0;
margin: 0;
}
span.success {
display: block;
padding: 5px;
background: green;
color: white;
}

span.mon {
    display: block;
    padding: 5px;
    background: #3eb93e;
    color: white;
}

span.success.hidden {
visibility: hidden;
padding: 0;
margin: 0;
}
pre.cmdbox {
    background: #F5F5F5;
    border: 1px solid #AAAAAA;
    overflow: auto;
    padding: 10px;
}

input:required,
textarea:required {
  border-color: red !important;
}
input:required + label {
  color: red;
}

form div {
  padding: 5px;
}
label {
  display: block;
}
input + label {
  display: inline-block;
  margin-right: 10px;
}

textarea[type=text_box],
textarea {
  border: 1px solid #999;
  padding: 5px;
  width: 100%;
}

textarea {
	background: url(./lines.png);
	background-attachment: local;
	background-repeat: no-repeat;
	padding-left: 35px;
	padding-top: 10px;
	border-color:#ccc;
}

div.b {
  word-wrap: break-word;
}

pre {
  word-wrap: break-word;
}