Ignore:
Timestamp:
02/09/22 03:21:13 (2 years ago)
Author:
GitHub <noreply@…>
Branches:
main
Children:
6f91f99
Parents:
0226942 (diff), 3fe36de (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Mato-77 <56981531+Mato-77@…> (02/09/22 03:21:13)
git-committer:
GitHub <noreply@…> (02/09/22 03:21:13)
Message:

Merge pull request #4 from partaloski/master

Added User profiles, improved clarity, improved UI

File:
1 edited

Legend:

Unmodified
Added
Removed
  • target/classes/static/css/shared.css

    r0226942 r967b414  
    164164.genres-listing ul li{
    165165    background-color: rgba(192,128,128,0.7);
    166     text-decoration: none !important;
     166    text-decoration: none;
    167167}
    168168
     
    214214    display: none;
    215215}
     216
     217.user-text{
     218    font-size: 95%;
     219    text-decoration: none !important;
     220    text-decoration-color: transparent;
     221    text-align: justify;
     222}
     223
     224.user-text-small{
     225    font-size: 85%;
     226    text-decoration: none !important;
     227    text-decoration-color: transparent;
     228    text-align: justify;
     229}
     230
     231
     232.user-movies-list{
     233    margin: auto;
     234    margin-top: 20px;
     235    padding: 10px;
     236    width: 80%;
     237    background-color: rgba(52, 58, 64, 0.7);
     238    border-radius: 10px;
     239    transition: 200ms;
     240    margin-right: 15px;
     241    color: white;
     242    transition: 200ms;
     243}
     244
     245.user-movies-list:hover{
     246    background-color: rgba(52, 58, 64, 1);
     247}
     248
     249.user-movies-list ul{
     250    list-style-type: none;
     251    width: 99%;
     252    margin: auto;
     253    display: none;
     254}
     255
     256.hidden-class{
     257    background-color: rgba(192,255,192,0.6);
     258    color: black;
     259}
     260
     261.hidden-class:hover{
     262    background-color: rgba(128,255,128,1) !important;
     263
     264}
     265
     266.user-movies-list ul li{
     267    color:black;
     268    background-color: rgba(255,255,255,0.7);
     269    padding: 12px;
     270    font-size: 80%;
     271    width: 90%;
     272    text-align: center;
     273    margin: auto;
     274    transition: 200ms;
     275    border-radius: 10px;
     276    margin-bottom: 5px;
     277    text-decoration: none;
     278    float: left;
     279}
     280
     281.user-movies-list hr{
     282    color: white;
     283    background-color: white;
     284    border-color: white;
     285}
     286
     287
     288.user-movies-list ul li:hover{
     289    background-color: rgba(255,255,255,1);
     290}
     291
     292.rate-title{
     293    font-size: 130%;
     294}
     295
     296#buttons-person{
     297    margin-top: 10px;
     298}
     299
     300#buttons-person li{
     301    float: left;
     302    margin-right: 10px;
     303}
Note: See TracChangeset for help on using the changeset viewer.