-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (120 loc) · 3.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="./icon.png">
<title>MPJS | Início</title>
<style>
:root {
--mainBlue: #73d7ff;
--darkerBlue: #739fff;
--error: red;
--grey: #e0e0e0;
}
* {
padding: 0;
margin: 0;
font-family: sans-serif;
}
body {
background-color: var(--grey);
}
.mainContainer {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
display: flex;
align-content: center;
flex-direction: row;
justify-content: center;
align-items: stretch;
flex-wrap: wrap;
border-radius: 15px;
overflow: hidden;
width: 90%;
box-shadow: 0 10px 10px rgb(121, 121, 121);
}
.subContainer:nth-child(1) {
background-color: var(--darkerBlue);
color: white;
}
.subContainer:nth-child(1) a {
color: var(--darkerBlue);
text-decoration: none;
background: white;
border-radius: 15px;
--button: 10px;
padding: calc(var(--button)/4);
padding-left: var(--button);
padding-right: var(--button);
}
.subContainer {
background: white;
color: var(--darkerBlue);
width: 100%;
padding: 20px;
display: flex;
flex-direction:column;
justify-content: center;
align-items: center;
text-align: center;
font-weight: 300;
}
.subContainer a {
color: white;
text-decoration: none;
background: var(--darkerBlue);
border-radius: 15px;
--button: 10px;
padding: calc(var(--button)/4);
padding-left: var(--button);
padding-right: var(--button);
margin-top: 30px;
}
.subContainer a:hover {
background: white;
color: var(--darkerBlue);
outline: 2px solid var(--darkerBlue);
}
.subContainer:nth-child(1) a:hover {
background: var(--darkerBlue);
color: white;
outline: 2px solid white;
}
.pageTitle {
position: absolute;
text-align: center;
top: 10px;
left: 50%;
transform: translateX(-50%);
padding: 10px;
color: white;
background: var(--darkerBlue);
border: 4px solid white;
border-radius: 100px;
box-shadow: 0 10px 10px rgb(121, 121, 121);
}
</style>
</head>
<body>
<h2 class="pageTitle">Plotador Matemático (MPJS) WIP</h2>
<div class="mainContainer">
<div class="subContainer tutorial">
<h3 class="titulo">Documentação</h3>
<br>
<p> Documentação do PdeF
<br>
(a documentação real do MPJS será feita futuramente)
</p>
<a href="./doc">documentação (PdeF)</a>
</div>
<div class="subContainer app">
<h3 class="titulo">Iniciar MPJS</h3>
<a href="./app">app</a>
</div>
</div>
</body>
</html>