| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- section#profile{
- display: inline-block;
- vertical-align: top;
- width: 40%;
- margin: auto 2em auto auto;
- }
- @media screen and (max-width : 800px){
- section#profile{
- display: block;
- width: 90%;
- margin: auto;
- }
- }
- section#profile article img#profile_image{
- display: inline-block;
- vertical-align: top;
- width: 25%;
- height: 25%;
- border-radius: 50%;
- box-shadow: 0 0 0 0.1em #000000, 0 0 0 0.3em #66bf38, 0 0 0 0.4em #000000;
- }
- section#profile article div#profile_content{
- width: 60%;
- padding: 0.5em 1.5em;
- display: inline-block;
- vertical-align: top;
- }
- section#profile article div.buttons{
- text-align: right;
- padding: 0.5em 2em 0 2em;
- }
- section#profile article div.buttons a.a_button img{
- filter: invert(1) brightness(1.4);
- vertical-align: middle;
- margin-left: 0.5em;
- width: 1.2em;
- }
- section#projects{
- display: inline-block;
- vertical-align: top;
- width: 50%;
- margin: 0;
- }
- @media screen and (max-width : 800px){
- section#projects{
- display: block;
- width: 90%;
- margin: 2em auto auto auto;
- }
- }
- section#projects article.project img.project_image{
- padding: 0.5em;
- width: 5em;
- height: 5em;
- background-color: #cccccc;
- border: 0.1em solid #60ae29;
- box-shadow: inset 0 0 0.5em #00220077;
- border-radius: 1em;
- }
- @media screen and (max-width : 800px){
- section#projects article.project img.project_image{
- padding: 0.9em;
- width: 10em;
- height: 10em;
- }
- }
- section#projects article.project td.project_details{
- vertical-align: top;
- padding-left: 1em;
- }
- section#projects div.buttons{
- text-align: right;
- padding: 0.5em 2em 0 2em;
- }
|