html_css
1@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');2
3body {4font-size: 16px;5font-family: Roboto, sans-serif;6font-weight: normal;7color: #0f141e;8background: #f1f1f1;9}
10.container {11max-width: 750px;12margin: auto;13padding-top: 30px;14/*color: cyan;*/15}
16.info {17margin-bottom: 20px;18}
19.avatar {20width: 32%;21border-radius: 25px;22box-shadow: 5px 5px 14px rgba(0, 0, 0, 0.25);23display: inline-block;24
25}
26.info {27margin-bottom: 20px;28display: flex;29}
30.info-text {31margin-left: 40px;32}
33.info-text p {34font-style: italic;35font-weight: bold;36color: #86898f;37margin: 0px;38}
39.info-text h4 {40margin-top: 7px;41margin-bottom: 3px;42}
43.info-text a {44color: black;45text-decoration: none;46}
47.info-text a:hover {48color: #86898f;49}
50.info-text a:active {51color: blue;52}
53.info-text a:visited {54color: gray55}
56.card {57border: 1px solid black;58border-right: 2px solid black;59border-bottom: 2px solid black;60border-radius: 10px;61margin-bottom: 5px;62padding: 15px 20px;63}
64.hobby {65background-color: #ebfee9;66}
67.workskill {68background-color: #fce6e5;69}
70.writetome {71background-color: #fef8e0;72}
73.btn {74background: #111;75padding: 15px 20px;76color: white;77border: none;78cursor: pointer;79border-radius: 5px;80font-family: inherit;81}
82.btn:hover {83opacity: .8;84
85}
86
87.list {88padding: 0 20px;89}
90
91.list li {92color: #86898f;93margin-bottom: 10px;94}
95.link-list {96list-style: none;97padding: 0;98}
99.link-list li{100margin-bottom: 10px;101border-bottom: 1px solid #ccc;102padding-bottom: 5px;103}
104.table {105width: 100%;106}
107.table td {108padding-bottom: 10px;109}
110
111.table td:nth-child(2),
112.table td:nth-child(3) {113color: #86898f;114}
115.form h2{116text-align: center;117}
118.form-row {119margin-bottom: 10px;120display: flex;121}
122.form-row .form-group{123/*display: inline-block;*/124margin-right: 20px;125width: 50%;126/*width: calc(50%-20px);*/127}
128.form-row .form-group:last-child {129margin-right: 0;130}
131.form-group label{132display: block;133font-size: 14px;134color: #86898f;135}
136.form-group input,
137form-group textarea{138width: 100%;139box-sizing: border-box;140border: none;141border-bottom: 1px solid #ccc;142color: #000;143padding: 15px 0 10px;144outline: none;145font-family: inherit;146}
147