Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
IT2810_P2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
IT2810-H19
T
Teams
Team 36
IT2810_P2
Commits
5e0eef2b
Commit
5e0eef2b
authored
Sep 26, 2019
by
Stine Johanne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change the color scheme
parent
58e43b08
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
22 additions
and
20 deletions
+22
-20
src/App.css
src/App.css
+1
-1
src/components/Image.js
src/components/Image.js
+1
-1
src/index.css
src/index.css
+1
-1
src/navbar.css
src/navbar.css
+4
-3
src/style/FavoriteButton.css
src/style/FavoriteButton.css
+4
-4
src/style/SessionElement.css
src/style/SessionElement.css
+6
-5
src/style/SessionNavigation.css
src/style/SessionNavigation.css
+5
-5
No files found.
src/App.css
View file @
5e0eef2b
...
...
@@ -5,7 +5,7 @@
.chooser
{
position
:
relative
;
background
:
#3
33
;
background
:
#3
43779
;
grid-column-start
:
1
;
grid-column-end
:
1
;
grid-row-start
:
3
;
...
...
src/components/Image.js
View file @
5e0eef2b
...
...
@@ -25,7 +25,7 @@ class Image extends React.Component {
fetchData
()
{
const
resource
=
"
img/
"
+
this
.
props
.
cat
+
"
/
"
+
this
.
props
.
artwork
+
"
.svg
"
;
fetch
(
resource
,
{
cache
:
"
force-cache
"
}
)
fetch
(
resource
)
.
then
(
res
=>
res
.
text
())
.
then
(
(
result
)
=>
{
...
...
src/index.css
View file @
5e0eef2b
...
...
@@ -5,7 +5,7 @@ body {
sans-serif
;
-webkit-font-smoothing
:
antialiased
;
-moz-osx-font-smoothing
:
grayscale
;
background-color
:
#fcfcfc
;
}
code
{
...
...
src/navbar.css
View file @
5e0eef2b
/* Add a black background color to the top navigation */
.navbar
{
background-color
:
#
333
;
background-color
:
#
fff
;
overflow
:
hidden
;
width
:
100%
;
box-shadow
:
0px
2px
2px
#efefef
;
}
/* Style the links inside the navigation bar */
.navbar
div
{
float
:
left
;
color
:
#
f2f2f2
;
color
:
#
000
;
text-align
:
center
;
padding
:
14px
16px
;
text-decoration
:
none
;
...
...
@@ -32,6 +33,6 @@
/* Add a color to the active/current link */
.navbar
div
.active
{
background-color
:
#
A20C25
;
background-color
:
#
343779
;
color
:
white
;
}
src/style/FavoriteButton.css
View file @
5e0eef2b
.Button-container
{
margin
:
auto
;
padding-top
:
5px
;
border
:
2px
solid
#222
;
}
.Button-container
button
{
...
...
@@ -9,12 +8,13 @@
display
:
block
;
padding
:
5px
;
font-size
:
1rem
;
background
:
#
A20C25
;
color
:
white
;
background
:
#
FFA646
;
color
:
#333
;
border
:
none
;
-webkit-border-radius
:
6px
;
-moz-border-radius
:
6px
;
border-radius
:
6px
;
box-shadow
:
0px
2px
2px
#333
;
}
.Button-container
button
:hover
{
...
...
@@ -32,4 +32,4 @@
display
:
inline-block
;
margin
:
10px
;
}
}
\ No newline at end of file
}
src/style/SessionElement.css
View file @
5e0eef2b
.sessionWrapper
{
background-color
:
#
333
;
background-color
:
#
e9e9e9
;
padding
:
8px
;
color
:
white
;
color
:
#333
;
box-shadow
:
0px
-2px
2px
#efefef
;
}
.sessionWrapper
h3
{
...
...
@@ -14,7 +15,7 @@
}
.sessionHolder
{
background-color
:
#
3f3f3
f
;
background-color
:
#
ff
f
;
border-radius
:
4px
;
max-height
:
200px
;
overflow-y
:
scroll
;
...
...
@@ -30,7 +31,7 @@
}
.sessionHolder
>
.selectedSessionItem
{
background-color
:
#
666
;
background-color
:
#
7b96e8
;
border-radius
:
8px
;
}
...
...
@@ -40,4 +41,4 @@
padding
:
8px
;
margin
:
4px
;
}
}
\ No newline at end of file
}
src/style/SessionNavigation.css
View file @
5e0eef2b
.sessionNavButtons
>
.navBtn
{
display
:
inline-block
;
background-color
:
#
555
;
background-color
:
#
FFA646
;
border
:
1px
solid
#ddd
;
border-radius
:
4px
;
margin
:
6px
;
...
...
@@ -15,11 +15,11 @@
.sessionNavButtons
>
.navBtn.inactive
{
border
:
1px
solid
#aaa
;
background-color
:
#
555
;
color
:
#
aaa
;
background-color
:
#
FFA646
;
color
:
#
333
;
}
@media
screen
and
(
min-width
:
960px
)
{
.sessionNavButtons
>
.navBtn
:hover
{
background-color
:
#
bbb
;
background-color
:
#
fff
;
}
}
\ No newline at end of file
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment