-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpnotes.css
More file actions
156 lines (154 loc) · 3.52 KB
/
phpnotes.css
File metadata and controls
156 lines (154 loc) · 3.52 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
html, body {
background: #000000;
text-align: center;
font-size: 1em;
font-family: verdana, tahoma, arial, helvetica, sans-serif;
}
.container{
position:absolute;
color: #33adff;
left:20%;
right:20%;
top:30px;
bottom:50px;
border:2px solid #33adff;
background-color: black;
-moz-border-radius:5px; /* FF */
-webkit-border-radius:5px; /* przeglądarki z webkitem (Safari, Chrome itp.) */
-khtml-border-radius:5px; /* przeglądarki typu K-meleon (typowo Linuxowe) */
border-radius:5px; /* pozostałe przeglądarki */
opacity: 0.9;
}
.left-side-area{
position:absolute;
left:0;
top:10%;
height:80%;
width:35%;
color:black;
background:#000000;
padding: 5px 20px;
border-right: 3px solid #33adff;
}
.usermenu{
position:absolute;
left:10%;
top:5%;
height:90%;
width:80%;
border:none;
}
.submit{
position:absolute;
left:0;
width:100%;
padding-top:5px;
padding-bottom:8px;
text-align:center;
color:#33adff;
background:black;
border:2px solid #33adff;
-moz-border-radius:5px; /* FF */
-webkit-border-radius:5px; /* przeglądarki z webkitem (Safari, Chrome itp.) */
-khtml-border-radius:5px; /* przeglądarki typu K-meleon (typowo Linuxowe) */
border-radius:5px; /* pozostałe przeglądarki */
}
.submit:hover{
border-width:3px;
cursor:pointer;
}
input.meta {
position:absolute;
left:0;
width:100%;
padding-top:5px;
padding-bottom:8px;
text-align:center;
color:#33adff;
font-size:15;
background:#050505;
border: none;
border-bottom: 3px solid #33adff;
-moz-border-radius:5px; /* FF */
-webkit-border-radius:5px; /* przeglądarki z webkitem (Safari, Chrome itp.) */
-khtml-border-radius:5px; /* przeglądarki typu K-meleon (typowo Linuxowe) */
border-radius:5px; /* pozostałe przeglądarki */
}
select.meta {
position:absolute;
left:0;
width:100%;
padding-top:5px;
padding-bottom:8px;
text-align:center;
color:#33adff;
font-size:15;
background:#050505;
border: none;
border-bottom: 3px solid #33adff;
background-image:
linear-gradient(45deg, transparent 50%, gray 50%),
linear-gradient(135deg, gray 50%, transparent 50%),
linear-gradient(to right, #ccc, #ccc);
background-position:
calc(100% - 20px) calc(1em + 2px),
calc(100% - 15px) calc(1em + 2px),
calc(100% - 2.5em) 0.5em;
background-size:
5px 5px,
5px 5px,
1px 1.5em;
background-repeat: no-repeat;
-webkit-appearance: none;
-moz-appearance: none;
-moz-border-radius:5px; /* FF */
-webkit-border-radius:5px; /* przeglądarki z webkitem (Safari, Chrome itp.) */
-khtml-border-radius:5px; /* przeglądarki typu K-meleon (typowo Linuxowe) */
border-radius:5px; /* pozostałe przeglądarki */
}
select.meta:focus {
background-image:
linear-gradient(45deg, #33adff 50% , transparent 50%),
linear-gradient(135deg, transparent 50%, #33adff 50%),
linear-gradient(to right, #ccc, #ccc);
background-position:
calc(100% - 15px) 1em,
calc(100% - 20px) 1em,
calc(100% - 2.5em) 0.5em;
background-size:
5px 5px,
5px 5px,
1px 1.5em;
background-repeat: no-repeat;
outline: 0;
}
select:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #000;
}
textarea.content{
position:absolute;
right:5px;
top:50px;
bottom:5px;
height:90%;
width:55%;
color:black;
background:white;
padding: 5px 20px;
border-bottom: 3px solid #33adff;
-moz-border-radius:5px; /* FF */
-webkit-border-radius:5px; /* przeglądarki z webkitem (Safari, Chrome itp.) */
-khtml-border-radius:5px; /* przeglądarki typu K-meleon (typowo Linuxowe) */
border-radius:5px; /* pozostałe przeglądarki */
}
a
{color: #33adff;
font-size: 1em;
}
a:visited
{color: #33adff;
}
a:hover
{color: #33adff;
}