-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
124 lines (102 loc) · 2.56 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
body {
padding: 0px;
margin: 0px;
font-family:monospace;
background: linear-gradient(180deg, rgb(166 76 175) 0, rgb(63, 81, 181) 100%)
/* background: linear-gradient(to top, #e5dddf 52%, #041b32 48%); */
}
/* Firefox */
html {
scrollbar-color: rgb(36,153, 157) rgb(2,20,40);
scrollbar-width: thin;
}
/* WebKit and Chromiums */
::-webkit-scrollbar {
width: 6px;
height: 6px;
background-color: rgb(2,20,40);
}
::-webkit-scrollbar-thumb {
background: rgb(2,20,40);
border-radius: 5px;
}
.wrapper {
--s: 90px; /* control the size*/
--c1: #041b32;
--c2: #5c5c7700;
--_g: #0000 90deg,var(--c1) 0;
background:
conic-gradient(from 90deg at 2px 2px,var(--_g)),
conic-gradient(from 90deg at 1px 1px,var(--_g)),
var(--c2);
background-size: var(--s) var(--s), calc(var(--s)/5) calc(var(--s)/5);
}
.wrapper2 {
background: rgb(46,46,51);
background: linear-gradient(180deg, rgba(0, 0, 0, 0.586) 1%, rgba(47,47,52,0) 3%);
}
.vertical-center {
position: relative;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.island {
background-color: rgb(2,20,40);
color: rgb(255, 255, 255);
width: 50%;
height: auto;
max-width: 600px;
max-height: 250px;
overflow: auto;
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=10, Direction=0, Color=#000000)";/*IE 8*/
-moz-box-shadow: 0 10px 10px -4px rgba(0,0,0,0.7);/*FF 3.5+*/
-webkit-box-shadow: 0 10px 10px -4px rgba(0,0,0,0.7);/*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
box-shadow: 0 10px 10px -4px rgba(0,0,0,0.7);/* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=10, Direction=135, Color=#000000); /*IE 5.5-7*/
}
.navigation {
background-color: rgb(222, 205, 22);
color: rgb(255, 255, 255);
width: 50%;
height: 20px;
}
.circle-container {
height: 20px;
padding: 0;
margin: 0;
}
.content {
padding-left: 0.5em;
margin: 0.1em;
overflow: clip;
text-align: left;
}
h1 {
font-size: 1.1em;
color: rgb(217, 75, 75);
}
h2 {
font-size: 1.1em;
color: rgb(17, 248, 186);
}
p {
font-size: 1em;
color: rgb(255, 255, 255);
}
a:link {
color: rgba(111, 39, 254, 0.9);
}
a:visited {
color: rgba(127, 63, 255, 0.9);
}
a:hover {
color: rgb(299, 26, 113);
}
a:active {
color: rgb(234, 151, 43);
}
s {
color:rgb(217, 75, 75);
}