split + refine styles
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
INSERT INTO event
|
||||
VALUES (1, '2d90ae27-1129-4b61-84a5-6c7d585e777e', '07FEA694', 'CreateGroupEvent',
|
||||
'{"type":"CreateGroupEvent","groupId":"2d90ae27-1129-4b61-84a5-6c7d585e777e","userId":"07FEA694","groupVisibility":"PUBLIC","groupParent":null,"groupType":"SIMPLE"}'),
|
||||
'{"type":"CreateGroupEvent","groupId":"2d90ae27-1129-4b61-84a5-6c7d585e777e","userId":"07FEA694","groupParent":null,"groupType":"PUBLIC"}'),
|
||||
(2, '2d90ae27-1129-4b61-84a5-6c7d585e777e', 'orga', 'AddUserEvent',
|
||||
'{"type":"AddUserEvent","groupId":"2d90ae27-1129-4b61-84a5-6c7d585e777e","userId":"orga","givenname":"Marcos","familyname":"Glover","email":"Marcos.Glover@mail.de"}'),
|
||||
|
||||
@ -29,7 +29,7 @@ VALUES (1, '2d90ae27-1129-4b61-84a5-6c7d585e777e', '07FEA694', 'CreateGroupEvent
|
||||
'{"type":"AddUserEvent","groupId":"2d90ae27-1129-4b61-84a5-6c7d585e777e","userId":"10","givenname":"Eduardo","familyname":"Lowe","email":"Eduardo.Lowe@mail.de"}'),
|
||||
|
||||
(14, '555a531c-8b80-491c-88b4-8fc18170d318', '2D7D9CE0', 'CreateGroupEvent',
|
||||
'{"type":"CreateGroupEvent","groupId":"555a531c-8b80-491c-88b4-8fc18170d318","userId":"2D7D9CE0","groupVisibility":"PUBLIC","groupParent":null,"groupType":"SIMPLE"}'),
|
||||
'{"type":"CreateGroupEvent","groupId":"555a531c-8b80-491c-88b4-8fc18170d318","userId":"2D7D9CE0","groupParent":null,"groupType":"PRIVATE"}'),
|
||||
(15, '555a531c-8b80-491c-88b4-8fc18170d318', 'orga', 'AddUserEvent',
|
||||
'{"type":"AddUserEvent","groupId":"555a531c-8b80-491c-88b4-8fc18170d318","userId":"orga","givenname":"Jerald","familyname":"Ward","email":"Jerald.Ward@mail.de"}'),
|
||||
|
||||
@ -48,7 +48,7 @@ VALUES (1, '2d90ae27-1129-4b61-84a5-6c7d585e777e', '07FEA694', 'CreateGroupEvent
|
||||
'{"type":"AddUserEvent","groupId":"555a531c-8b80-491c-88b4-8fc18170d318","userId":"5","givenname":"Dannie","familyname":"Wintheiser","email":"Dannie.Wintheiser@mail.de"}'),
|
||||
|
||||
(22, '5e1c2b9a-bf3a-4c9e-9bf0-f5beecb69eb3', 'E7E2EC5F', 'CreateGroupEvent',
|
||||
'{"type":"CreateGroupEvent","groupId":"5e1c2b9a-bf3a-4c9e-9bf0-f5beecb69eb3","userId":"E7E2EC5F","groupVisibility":"PUBLIC","groupParent":null,"groupType":"SIMPLE"}'),
|
||||
'{"type":"CreateGroupEvent","groupId":"5e1c2b9a-bf3a-4c9e-9bf0-f5beecb69eb3","userId":"E7E2EC5F","groupParent":null,"groupType":"LECTURE"}'),
|
||||
(23, '5e1c2b9a-bf3a-4c9e-9bf0-f5beecb69eb3', 'orga', 'AddUserEvent',
|
||||
'{"type":"AddUserEvent","groupId":"5e1c2b9a-bf3a-4c9e-9bf0-f5beecb69eb3","userId":"orga","givenname":"Hana","familyname":"Connelly","email":"Hana.Connelly@mail.de"}'),
|
||||
|
||||
|
0
src/main/resources/static/create.css
Normal file
0
src/main/resources/static/create.css
Normal file
31
src/main/resources/static/index.css
Normal file
31
src/main/resources/static/index.css
Normal file
@ -0,0 +1,31 @@
|
||||
/*Grouplist Hover Effect*/
|
||||
.content {
|
||||
background: #e6f4ff;
|
||||
box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
|
||||
transition: 100ms;
|
||||
}
|
||||
|
||||
.content:hover {
|
||||
background: #d4ecff;
|
||||
box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .25);
|
||||
}
|
||||
|
||||
.content-heading {
|
||||
transition: 100ms;
|
||||
}
|
||||
|
||||
.content:hover .content-heading {
|
||||
margin-left: 5px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.content-text-in {
|
||||
margin-right: 10px;
|
||||
box-shadow: inset 0 .125rem .25rem rgba(0, 0, 0, .075);
|
||||
transition: 100ms;
|
||||
}
|
||||
|
||||
.content:hover .content-text-in {
|
||||
margin-right: 0;
|
||||
box-shadow: inset 0 .125rem .25rem rgba(0, 0, 0, .25);
|
||||
}
|
@ -10,34 +10,44 @@
|
||||
|
||||
/*Content Container*/
|
||||
.content {
|
||||
border-radius: 3px;
|
||||
background: #e6f4ff;
|
||||
transition: 100ms;
|
||||
box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
|
||||
}
|
||||
|
||||
.content:hover {
|
||||
border-radius: 5px;
|
||||
background: #d4ecff;
|
||||
padding: 10px 10px;
|
||||
margin-top: 15px;
|
||||
box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .25);
|
||||
}
|
||||
|
||||
/*Content Heading*/
|
||||
.content-heading {
|
||||
margin-bottom: 10px;
|
||||
font-weight: bold;
|
||||
font-optical-sizing: auto;
|
||||
overflow-wrap: break-word;
|
||||
margin-bottom: 5px;
|
||||
transition: 100ms;
|
||||
}
|
||||
|
||||
.content:hover .content-heading {
|
||||
margin-left: 5px;
|
||||
padding-bottom: 10px;
|
||||
.content-text {
|
||||
margin-bottom: 15px;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/*Content Paragraph*/
|
||||
.content-text-in {
|
||||
background: whitesmoke;
|
||||
border-radius: 5px;
|
||||
padding: 10px;
|
||||
margin-bottom: 15px;
|
||||
cursor: default;
|
||||
box-shadow: inset 0 .125rem .25rem rgba(0, 0, 0, .25);
|
||||
}
|
||||
|
||||
.content-text-in div {
|
||||
overflow-wrap: break-word;
|
||||
font-optical-sizing: auto;
|
||||
}
|
||||
|
||||
/*Link*/
|
||||
.link {
|
||||
color: dodgerblue;
|
||||
color: var(--primary);
|
||||
transition: 100ms;
|
||||
}
|
||||
|
||||
@ -45,50 +55,29 @@
|
||||
color: #4fa4ff;
|
||||
}
|
||||
|
||||
/*Content Paragraph*/
|
||||
.content-text {
|
||||
background: whitesmoke;
|
||||
border-radius: 3px;
|
||||
margin-top: 5px;
|
||||
margin-right: 10px;
|
||||
cursor: default;
|
||||
transition: 100ms;
|
||||
box-shadow: inset 0 .125rem .25rem rgba(0, 0, 0, .075);
|
||||
}
|
||||
|
||||
.content:hover .content-text {
|
||||
margin-right: 0;
|
||||
box-shadow: inset 0 .125rem .25rem rgba(0, 0, 0, .25);
|
||||
}
|
||||
|
||||
.content-text div {
|
||||
overflow-wrap: break-word;
|
||||
font-optical-sizing: auto;
|
||||
}
|
||||
|
||||
/*Badges*/
|
||||
.lecture {
|
||||
cursor: default;
|
||||
color: whitesmoke;
|
||||
background: lightseagreen;
|
||||
background: var(--info);
|
||||
}
|
||||
|
||||
.public {
|
||||
cursor: default;
|
||||
color: whitesmoke;
|
||||
background: #52a1eb;
|
||||
background: var(--primary);
|
||||
}
|
||||
|
||||
.private {
|
||||
cursor: default;
|
||||
color: whitesmoke;
|
||||
background: darkslategray;
|
||||
background: var(--secondary);
|
||||
}
|
||||
|
||||
.parent {
|
||||
cursor: default;
|
||||
color: whitesmoke;
|
||||
background: mediumorchid;
|
||||
background: var(--warning);
|
||||
}
|
||||
|
||||
/*Positioning*/
|
||||
|
Reference in New Issue
Block a user