-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbasic.css
77 lines (63 loc) · 968 Bytes
/
basic.css
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
@font-face {
font-family: myFirstFont;
src: url(kai.ttf);
}
@font-face{
font-family: mySecondFont;
src: url(gb.ttf);
}
body{
text-align: center;
padding: 20px;
font-family: myFirstFont;
}
.red: {
color: red;
}
a {
text-decoration: none;
color: gray;
}
input {
vertical-align: top;
min-height: 20px;
}
button {
color: #6496c8;
background: rgba(0,0,0,0);
border: none;
font-size: large;
}
button:hover {
border-color: red;
color: red;
}
#show_full {
color: ;
background: rgba(0,0,0,0);
border: none;
}
#show_full:hover {
border-color: orange;
color: orange;
}
hr.style-two {
border: 0;
height: 1px;
background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(255,20,147,0.75), rgba(0, 0, 0, 0));
}
#mainbox{
padding-top: 20px;
}
#error{
position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
bottom: 10%;
z-index: 10;
}
#full{
font-family: mySecondFont;
}