it should work
parent
59cca50018
commit
ba7ee8646e
@ -1 +1,36 @@
|
|||||||
.gjs-one-bg{background-color:#463a3c}.gjs-one-color{color:#463a3c}.gjs-one-color-h:hover{color:#463a3c}.gjs-two-bg{background-color:#b9a5a6}.gjs-two-color{color:#b9a5a6}.gjs-two-color-h:hover{color:#b9a5a6}.gjs-three-bg{background-color:#804f7b}.gjs-three-color{color:#804f7b}.gjs-three-color-h:hover{color:#804f7b}.gjs-four-bg{background-color:#d97aa6}.gjs-four-color{color:#d97aa6}.gjs-four-color-h:hover{color:#d97aa6}
|
.gjs-one-bg {
|
||||||
|
background-color: #463a3c;
|
||||||
|
}
|
||||||
|
.gjs-one-color {
|
||||||
|
color: #463a3c;
|
||||||
|
}
|
||||||
|
.gjs-one-color-h:hover {
|
||||||
|
color: #463a3c;
|
||||||
|
}
|
||||||
|
.gjs-two-bg {
|
||||||
|
background-color: #b9a5a6;
|
||||||
|
}
|
||||||
|
.gjs-two-color {
|
||||||
|
color: #b9a5a6;
|
||||||
|
}
|
||||||
|
.gjs-two-color-h:hover {
|
||||||
|
color: #b9a5a6;
|
||||||
|
}
|
||||||
|
.gjs-three-bg {
|
||||||
|
background-color: #804f7b;
|
||||||
|
}
|
||||||
|
.gjs-three-color {
|
||||||
|
color: #804f7b;
|
||||||
|
}
|
||||||
|
.gjs-three-color-h:hover {
|
||||||
|
color: #804f7b;
|
||||||
|
}
|
||||||
|
.gjs-four-bg {
|
||||||
|
background-color: #d97aa6;
|
||||||
|
}
|
||||||
|
.gjs-four-color {
|
||||||
|
color: #d97aa6;
|
||||||
|
}
|
||||||
|
.gjs-four-color-h:hover {
|
||||||
|
color: #d97aa6;
|
||||||
|
}
|
||||||
@ -1,23 +1,24 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>Grape JS Example</title>
|
<title>Grapes JS Example</title>
|
||||||
<script src="js/lib/grapes.min.js"></script>
|
<script src="js/lib/grapes.min.js"></script>
|
||||||
<link rel="stylesheet" href="/css/lib/grapes.min.css">
|
<link rel="stylesheet" href="css/lib/grapes.min.css" />
|
||||||
|
|
||||||
<!--Add Style and Script for Preset Webpage Builder-->
|
<!-- Add Style and Script for Preset Webpage Builder -->
|
||||||
|
<script src="js/lib/grapesjs-preset-webpage.min.js"></script>
|
||||||
|
<link rel="stylesheet" href="css/lib/grapesjs-preset-webpage.min.css" />
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="css/main.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="editor">
|
||||||
|
<p>Testing Editor using Grapes JS librrary</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
<link rel="stylesheet" href="/css/main.css">
|
<script type="text/javascript" src="js/main.js"></script>
|
||||||
</head>
|
</body>
|
||||||
<body>
|
|
||||||
<div id="editor">
|
|
||||||
<p>Testing Editor using GrapeJS library</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script type="text/javascript" src="js/main.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
</html>
|
||||||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue