-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (55 loc) · 1 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
:root {
--selection-bg: red;
}
body {
text-align: center;
margin: 0px;
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
}
.blocklyDiv , #code {
margin: 0px;
}
#code {
float: right;
width: 29%;
height: 99vh;
max-width: 29%;
max-height: 99vh;
resize: none;
border: none;
}
#code::selection {
background: var(--selection-bg);
}
#code::-moz-selection { /* dla Firefox */
background: var(--selection-bg);
}
#logo {
position: relative;
animation-name: down;
animation-duration: 4s;
}
a:link {
color: #e22319;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: brown;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: black;
background-image: linear-gradient(45deg, silver, white, silver);
text-decoration: none;
}
a:active {
color: blue;
background-color: transparent;
text-decoration: underline;
}
.footer {
/*text-decoration: overline;*/
}