-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (23 loc) · 789 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (23 loc) · 789 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Themes with 'styled-components' (PoC)</title>
</head>
<body>
<div class="container">
<div id="app"></div>
<div class="btn-group" role="group">
<button type="button" class="btn btn-default" onclick="changeCss('pink')">Pink</button>
<button type="button" class="btn btn-default" onclick="changeCss('blue')">Blue</button>
<button type="button" class="btn btn-default" onclick="changeCss('green')">Green</button>
</div>
</div>
<script>
function changeCss(color) {
document.getElementsByTagName("link")[0].href = color + '-theme.css'
}
</script>
</body>
</html>