-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathutils.R
More file actions
81 lines (73 loc) · 1.52 KB
/
utils.R
File metadata and controls
81 lines (73 loc) · 1.52 KB
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
html_code = '<style type="text/css">
p {color:#267A43;}
html, body {
height: 100%;
}
body {
margin: 0;
background: linear-gradient(
135deg,
#fff8f8,
#fffbf4,
#fffff8,
#f6fffa,
#f6f9ff,
#f8f6ff,
#fdf6ff
);
background-attachment: fixed;
}
#title{
width: calc(100% - 32px);
max-width: 1100px;
margin: 50px auto;
min-height: 178px;
padding: 20px;
border-radius: 300px;
border: 20px solid transparent;
background:
linear-gradient(#e8f5e7, #e8f5e7) padding-box,
linear-gradient(90deg, #171329, navy) border-box;
box-sizing: border-box;
}
#tool_name{
font-family:Copperplate Gothic Bold;
letter-spacing:8px;
text-align:center;
}
#tool_exp{
font-family:Charlesworth;
text-align:center;
color:#117704;
}
#tool{
margin-left: 100px;
}
#gbfile{
margin-bottom:-15px;
}
#remove_file{
width:100%;
margin-top: 25px;
margin-left: 0px;
}
#remove_layer1, #remove_layer2, #remove_layer3, #layer1_example, #layer2_example, #layer3_example{
margin-top: 0px;
margin-bottom: 35px;
}
label[for="layer1"]{
font-weight: normal;
}
label[for="layer2"] {
font-weight: normal;
}
label[for="layer3"] {
font-weight: normal;
}
label[for="layer1_type"]{
font-weight: normal;
}
label[for="layer2_type"]{
font-weight: normal;
}
</style>'