| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- #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%;
- min-height: 275px;
- 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;
- margin-top: 15px;
- }
- .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;
- }
|