| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- #sessionPage{
- flex-direction: column;
- justify-content: flex-start;
- padding-bottom: 25px;
- }
- #sessionButtonBox{
- display: flex;
- flex-direction: column;
- position: absolute;
- top: 15px;
- right: 15px;
- }
- #sessionNotesBtn{
- margin-bottom: 5px;
- }
- #sessionNotesText{
- display: flex;
- flex-direction: column;
- position: absolute;
- top: 25%;
- left: 2%;
- height: 35%;
- width: 95%;
- padding: 25px 10px;
- box-shadow: 0 0 5px var(--text);
- background: var(--gray);
- z-index: 2;
- }
- #sessionNotesText textarea{
- height: 100%;
- width: 100%;
- font-size: 18px;
- margin-bottom: 15px;
- color: var(--gray);
- padding: 5px;
- }
- #noSessionText{
- color: white;
- font-size: 18px;
- }
- #sessionPage h1{
- text-align: center;
- text-decoration: underline;
- }
- .weightSet{
- padding: 10px 5px;
- border: 1px solid var(--accent);
- border-radius: 25px;
- margin: 15px 0;
- position: relative;
- }
- .weightSetDelete{
- background: linear-gradient(to right, var(--accent), var(--primary));
- border: none;
- position: absolute;
- top: 5px;
- right: 5px;
- font-size: 22px;
- border-radius: 50%;
- height: 35px;
- width: 35px;
- cursor: pointer;
- color: var(--dark);
- }
- .weightSet h3{
- margin-bottom: 15px;
- }
- .weightSet label{
- display: flex;
- flex-direction: column;
- margin-bottom: 10px;
- }
- .weightSet input{
- font-size: 22px;
- padding: 5px;
- color: var(--gray);
- }
- #nextSessionBtn, #finishSessionBtn{
- width: 100%;
- max-width: 550px;
- padding: 15px 0;
- margin-top: 25px;
- }
|