aboutsummaryrefslogtreecommitdiffstats
path: root/style.css
blob: ef96a96d80c147b70bd8f692ece255ee5edd8754 (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/************************************************************
** 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;
margin: 10px!important;
}
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;
}

.pagination {
  display: inline-block;
  margin-top: 15px;
}

.pagination a {
  color: black;
  float: left;
  border: #cecece 1px solid;
  padding: 8px 16px;
  text-decoration: none;
}

.pagination a.active {
  background-color: #4CAF50;
  color: white;
}

.pagination a:hover:not(.active) {background-color: #ddd;}