-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmystyle.css
More file actions
95 lines (90 loc) · 1.74 KB
/
mystyle.css
File metadata and controls
95 lines (90 loc) · 1.74 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
@charset "ISO-8859-1";
body {
background-image: url(background.jpg);
background-size: 100%;
}
#areas {
left: 500px;
border: 1px solid gold;
}
th {
font-family: system-ui;
font-style: normal;
font-size: 14pt;
color: rgb(254,188,255);
text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
0px 8px 13px rgba(0,0,0,0.1),
0px 18px 23px rgba(0,0,0,0.1);
}
.centered {
position: relative;
text-align: center;
}
.button {
font-weight: 700;
color: black;
text-decoration: none;
padding: .6em 1em calc(.6em + 2px);
border-radius: 3px;
background: rgb(255,251,119);
box-shadow: 0 -3px rgb(250,220,22) inset;
transition: 0.2s;
}
.button:hover { background: rgb(255,251,119); }
.button:active {
background: rgb(250,220,22);
box-shadow: 0 3px rgb(250,220,22) inset;
}
p {
font-family: Georgia;
color: rgb(255,218,218);
font-weight: bold;
font-size: 1.2em;
font-style: italic;
letter-spacing: 0.25em;
display: block;
padding-top: 0.5em;
margin-top: 0.5em;
text-shadow:
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
}
#resulthead > table{
width:100%;
table-layout: fixed;
margin:auto;
}
#resultbody > table{
width:100%;
table-layout: fixed;
margin:auto;
}
.tbl-header{
background-color: rgba(255,255,255,0.3);
}
.tbl-content{
height:100px;
overflow-x:auto;
margin-top: 0px;
border: 1px solid rgba(255,255,255,0.3);
}
#resulthead > th{
padding: 30px;
text-align: center;
font-weight: 500;
font-size: 12px;
color: #fff;
text-transform: uppercase;
}
#resultbody > td{
padding: 30px;
text-align: right;
vertical-align:middle;
font-weight: 300;
word-wrap: break-word;
font-size: 12px;
color: #fff;
border-bottom: solid 1px rgba(255,255,255,0.1);
}