| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- /* /projects/index.php */
- table#project_list{
- width: 100%;
- border-spacing: 0;
- border-collapse: collapse;
- }
- table#project_list th{
- font-weight: bold;
- background: linear-gradient(to bottom, #4e9987 0%,#69d8b9 89%,#60caac 97%,#ade8f9 100%);
- border: 0.1em solid #335533;
- }
- table#project_list td{
- border: 0.1em solid #335533;
- padding: 0.2em;
- }
- table#project_list td.td_project{
- width: 30%;
- }
- table#project_list td.td_project h4{
- margin: 0.2em;
- }
- table#project_list td.td_project h4 img{
- max-height: 2em;
- max-width: 2em;
- vertical-align: middle;
- }
- table#project_list td.td_project img.project_image{
- border: 0.2em solid #335533;
- border-radius: 0.4em;
- max-height: 3em;
- max-width: 3em;
- }
- table#project_list td.td_details{
- width: 50%;
- font-size: 80%;
- }
- table#project_list td.td_actions{
- width: 20%;
- text-align: center;
- }
- table#project_list td.td_actions input{
- padding: 0.1em;
- display: block;
- margin: auto;
- width: 90%;
- }
- /* /projects/edit.php */
- div#project_edit hr.separator{
- margin: 1.5em 20% 1.5em 20%;
- opacity: 0.5;
- }
- div#project_edit img#icon{
- vertical-align: middle;
- width: 4em;
- height: 4em;
- border: 0.3em solid #003400;
- border-radius: 1em;
- }
- div#project_edit input#icon_file{
- width: 0;
- height: 0;
- opacity: 0;
- }
- div#project_edit div#image_reel{
- overflow-x: scroll;
- border: 0.1em solid #003400;
- border-radius: 0.3em;
- height: 7em;
- background-color: #334433;
- padding: 0.5em;
- }
- div#project_edit div#image_reel img{
- vertical-align: middle;
- max-height: 5em;
- max-width: 7em;
- border: 0.2em solid #003400;
- border-radius: 0.1em;
- margin: 0.5em;
- background-color: #ffffff;
- }
- div#project_edit input#new_version{
- width: 16em;
- margin: 0.5em auto 2em auto;
- display: block;
- }
- div#project_edit table#versions{
- border-collapse: collapse;
- width: 100%;
- }
- div#project_edit table#versions td{
- border-right: 0.1em solid #334433;
- border-left: 0.1em solid #334433;
- border-bottom: 0.2em solid #334433;
- border-top: 0.2em solid #334433;
- }
- div#project_edit table#versions td.version_name{
- width: 15%;
- }
- div#project_edit table#versions td.version_details{
- width: 70%;
- line-height: 2
- }
- div#project_edit table#versions td.version_actions{
- width: 15%;
- text-align: center;
- }
- div#project_edit table#versions td.version_actions input{
- width: 90%;
- margin: auto;
- padding: 0.2em;
- display: block;
- }
- div#project_edit table#comments{
- border-collapse: collapse;
- width: 100%;
- }
- div#project_edit table#comments td{
- border-right: 0.1em solid #334433;
- border-left: 0.1em solid #334433;
- border-bottom: 0.2em solid #334433;
- border-top: 0.2em solid #334433;
- }
- div#project_edit table#comments td.text{
- width: 35%;
- }
- div#project_edit table#comments td.details{
- width: 50%;
- line-height: 2
- }
- div#project_edit table#comments td.actions{
- width: 15%;
- text-align: center;
- }
- div#project_edit table#comments td.actions input{
- width: 90%;
- margin: auto;
- padding: 0.2em;
- display: block;
- }
|