-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
executable file
·49 lines (48 loc) · 987 Bytes
/
styles.css
File metadata and controls
executable file
·49 lines (48 loc) · 987 Bytes
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
@font-face {
font-family: Vazir;
src: url("");
src: url('myFonts/ttf/Vazirmatn-Regular.ttf') format("truetype"),
url("myFonts/webfonts/Vazirmatn-Regular.woff2") format("woff2");
font-weight: normal;
}
@font-face {
font-family: Vazir;
src: url('myFonts/ttf/Vazirmatn-Bold.ttf') format("truetype"),
url("myFonts/webfonts/Vazirmatn-Bold.woff2") format("woff2");
font-weight: bold;
}
*{
font-family: Vazir;
font-weight: 200;
word-wrap: break-word;
}
.text-center-custom {
text-align: center;
}
.float-right{
float: right;
}
#tohomepage-link{
position: relative;
top: 15px;
right: 50px;
}
#generateBtn{
display: block;
background-color: rgb(199, 36, 15);
color: #eee;
padding: 10px 20px;
border: none;
font-size: 20px;
font-family: Vazir;
}
#generateBtn:hover{
cursor: pointer;
}
.generation-label{
color: rgb(195, 29, 29);
margin-right: 20px;
}
canvas{
direction: rtl;
}