-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
125 lines (115 loc) · 2.86 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<title>Network | Groups</title>
<section id="flexer">
<div id="xpHeader"><span>
EXPERIENCES
</span></div>
<div id="metadata">
<button class="buttonX">A</button>
<button class="buttonX">B</button>
</div>
</section>
<div id="container"></div>
</body>
<style>
html, body {
overflow: hidden;
margin:0
}
#flexer {
display: flex;
flex-direction: row;
}
#xpHeader {
/*background: #ff6e40;*/
color: #ffe8e8;
background: #333333;
min-width:20vw;
font-weight:bold;
align-content: center;
justify-content: center;
text-align: center;
padding:0.2rem;
display:flex;
}
#xpHeader > * {
align-self:center;
}
#metadata {
padding: 0.5rem;
/*position: absolute;*/
font-weight: bold;
display: flex;
/*position: absolute;*/
align-items: center;
flex-direction: row;
min-width: 80vw;
justify-content: start;
background: #ed6b4f;
text-align: center;
}
#metadata > * {
margin-left: 2rem;
}
.buttonX {
/*padding-top: 0.5rem;*/
/*margin-bottom: 0.3rem;*/
/*min-height: 5vh;*/
/*width: 10rem;*/
font-weight: bold;
background-color: yellow;
/*height: 1.5rem;*/
font-family: 'Roboto', sans-serif;
font-size: 14px;
text-transform: uppercase;
/*letter-spacing: 2.5px;*/
color: #595959;
border: none;
border-radius: 4px;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease 0s;
cursor: pointer;
outline: none;
min-height: 1.2rem;
}
.buttonX:hover {
background-color: #2EE59D;
box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
color: #fff;
transform: translateY(-7px);
}
#container {
width: 100vw;
height: 93vh;
/*background-color: #222222;*/
}
/*#metaData {*/
/*background: cornflowerblue;*/
/*color: white;*/
/*max-width: 20vw;*/
/*min-width: 20vw;*/
/*text-align: center;*/
/*position: absolute;*/
/*display:flex;*/
/*flex-direction: column;*/
/*box-shadow: #4c4c4c;*/
/*}*/
body {
max-height:100vh;
/*overflow:hidden;*/
background-color: #faffd3;
font: 12pt arial;
}
</style>
<script src="./index.js"></script>
<link rel="stylesheet" href="style.css">
</html>