This commit is contained in:
GotPPay
2017-11-30 17:43:24 +01:00
parent 630e812654
commit 4f36fc7738
29 changed files with 2884 additions and 43 deletions

28
web/src/css/App.css Normal file
View File

@@ -0,0 +1,28 @@
.App {
text-align: center;
}
.App-logo {
animation: App-logo-spin infinite 20s linear;
height: 80px;
}
.App-header {
background-color: #222;
height: 150px;
padding: 20px;
color: white;
}
.App-title {
font-size: 1.5em;
}
.App-intro {
font-size: large;
}
@keyframes App-logo-spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

35
web/src/css/Intent.css Normal file
View File

@@ -0,0 +1,35 @@
/*IntentList and IntentItem CSS*/
.IntentList{
max-width: 300px;
width: 30%;
border: 2px solid black;
float:left;
background-color: gray;
}
.IntentList-title{
font-size: 1.5em;
}
.IntentItem{
margin-top: 1px;
margin-bottom: 1px;
background-color: blue;
}
.IntentItem-selected{
background-color: yellow;
}
/*IntentDetails CSS*/
.IntentDetails{
border: 2px solid blue;
float: left;
width: 70%;
}

5
web/src/css/index.css Normal file
View File

@@ -0,0 +1,5 @@
body {
margin: 0;
padding: 0;
font-family: sans-serif;
}