-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
127 lines (105 loc) · 2.76 KB
/
style.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
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
body {
font-family: "arial", cursive;
background-color: silver;
color: white;
}
@font-face {
font-family: 'PureHeart';
src: url('https://raw.githubusercontent.com/MSVerse/TheatN/master/PureHeart-Regular.ttf') format('truetype');
}
@font-face {
font-family: 'GoldplayAlt';
src: url('https://raw.githubusercontent.com/MSVerse/TheatN/master/GoldplayAlt-LightIt.ttf') format('truetype');
}
.content {
width: 1%;
}
#content tr:hover {
background-color: orange;
text-shadow: 0px 0px 10px #fff;
}
#content .first {
background-color: orange;
}
table {
width: 100%;
border: 1px #000000 dotted;
}
a {
color: white;
text-decoration: none;
}
a:hover {
color: blue;
text-shadow: 0px 0px 10px #ffffff;
}
input,
select,
textarea {
border: 1px #000000 solid;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
textarea {
width: 100%;
height: 200px;
}
form {
margin-bottom: 20px;
}
.judul {
font-family: 'PureHeart';
font-size: 50px;
display: grid;
place-items: center;
height: 3vh;
color: green;
}
.judul a {
color: green;
}
.subjudul {
display: grid;
place-items: center;
color: white;
font-family: 'GoldplayAlt';
}
.info {
float: right;
margin-right: 20px;
margin-top: 0;
clear: both;
}
.upload {
display: inline-block;
margin-right: 20px;
cursor: pointer;
color: white;
border: none;
border-radius: 4px;
font-size: 14px;
float: right;
clear: both;
}
.icon-folder {
color: orange;
}
.icon-file {
color: blue;
}
.icon-menu {
color: green;
}
.icon-info {
color: green;
}
.first {
font-size: 20px;
color: green;
background-color: white;
font-family: 'GoldplayAlt';
}
.two {
background-color: white;
}