-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneric.css
118 lines (101 loc) · 2.49 KB
/
generic.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
* { margin: 0; padding: 0 }
a { color: gold; text-decoration: underline;}
nav{ color: white; }
.scroll {
border-image: url('scroll.png') 130 / 45px stretch;
border-image-outset: 45px; background-color:#dfb483;
overflow-y:scroll; height:70%
}
body{
background-color: #10093a; color:white;
text-align:center;
}
code{
width:80; height:80;
display: inline-block;
overflow: scroll;
resize:both; background-color:white; color:black; border:thin black;
overflow:auto;
}
button {padding:10px}
#mainnav{
overflow-x: auto;
overflow-y: hidden;
display: flex;
width:100%
}
#skip { width: 0; color: transparent; }
#skip:focus { width: unset; color: yellow; }
.link , #mainnav , #skip{transform:rotateX(180deg);}
.link {
display: inline-block;
height: 50%;
width:max-content;
text-align: center;
align-content: center;
padding: 6;
background-color: #1235;
margin: 5;
border-style: groove;
border-color: #fffc #fff5 #fff9;
}
.border {
border-left-color: white;
border-top-color: silver;
border-bottom-color: black;
border-right-color: grey;
border-width: 5px;
border-style: solid;
}
article {
position: relative; padding-bottom:20px;
min-height: calc(100vh - 100px);
}
#welcome{
background: -webkit-linear-gradient(#ff8100, #ff8100, #a95a00, #ff8100, #ff8100, #a95a00, #a95a00, #a95a00, #000000);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-color: red;
-webkit-text-stroke-width: 0.25px;
}
th {
display: table-cell;
vertical-align: inherit;
font-weight: bold;
text-align: -internal-center;
unicode-bidi: isolate;
padding-left: 10px;
padding-right: 10px;
}
table, td, tr {
background-color: grey;
color: yellow;
border: 5px;
margin: 0 auto;
padding-right: 10px;
border-color: black;
border-style: double;
text-align: center;
}
tr{
padding-left: 10px;
padding-right: 10px;
}
header{
text-align:left;
width: 100%;
border-bottom-color: #3a0202;
border-bottom-style: solid;
border-bottom-width: 10px;
background-image: linear-gradient(171deg, #a30000, #471b05);
}
#footer{
text-align: left;
padding-bottom: 20;
background-image: linear-gradient(171deg, #a30000, #471b05);
border-top-color: #8c1030;
border-top-style: solid;
border-top-width: 10px;
width: 100%;
}
}