-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
126 lines (109 loc) · 2.13 KB
/
styles.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
* {
box-sizing: border-box;
}
:root {
--element-color: #000000;
--bg-color: rgb(255, 64, 100);
--hover-color: #ffffff ;
--page-margins: 1%;
}
body{
font-family: 'NarkisBlock';
margin: 0;
/* overflow: hidden; */
direction: rtl;
background-color: var(--bg-color);
cursor:url(data/arrow128.png), auto;
}
/* HEADER */
header{
margin-right: var(--page-margins);
padding-bottom: var(--page-margins);
width: 100%;
font-size: 20px;
position: fixed;
background-color: var(--bg-color);
height: 50px;
top: 0 ;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
}
header > ul{
display: inline-block;
align-items: center;
justify-content: center;
position: relative;
}
#title {
position: relative;
display: flex;
justify-content: right;
flex-grow: 8;
top: 10px;
right: 12px;
padding: 0 0 0 0px;
color: var(--element-color);
}
#info {
position: relative;
padding-bottom: var(--page-margins);
left: 0;
height: 100%;
display: flex;
white-space: nowrap;
background-image: url('data/infologowhite.png');
background-repeat: no-repeat;
background-size: 25px 25px;
}
/* MAIN */
.main{
margin-right: var(--page-margins);
margin-left: var(--page-margins);
}
.fontRow{
display: inline;
position: relative;
font-size: 15vw;
line-height: 12vw;
color: var(--element-color);
/* -webkit-text-fill-color: var(--bg-color);;
-webkit-text-stroke-width: 3px;
-webkit-text-stroke-color: var(--element-color); */
}
div.fontRow:hover{
color: var(--hover-color);
/* -webkit-text-fill-color: var(--hover-color); */
}
.fontRow:focus {
outline: 0px solid transparent;
}
/* COLORS */
.colorControlers{
position: absolute;
display: flex;
flex-direction: column;
justify-content: space-between;
bottom: 10px ;
left: var(--page-margins) ;
}
.icon{
object-fit: contain;
height: 30px;
margin-bottom: 10px;
/* cursor: cell; */
cursor:url(data/arrow128.png), auto;
}
.icon:focus {
outline: 0px solid transparent;
}
#color-bg-container{
position: absolute;
left: 100px;
display:none;
}
#color-text-container{
position: absolute;
left: 100px;
display:none;
}