diff --git a/assets/css/pretendo-common.css b/assets/css/pretendo-common.css index 0a80672..edc10e4 100644 --- a/assets/css/pretendo-common.css +++ b/assets/css/pretendo-common.css @@ -223,6 +223,40 @@ button, .btn, .btn-alt { color: white; } +/* components - profiles */ +/* profiles */ +.cardProfiles { + display: flex; + flex-wrap: wrap; + justify-content: space-between; +} +.profile { + min-width: 250px; + width: 50%; + max-width: 550px; + margin-bottom: 10px; + display: flex; +} +.profile .profileIcon { + margin-right: 10px; + width: 80px; height: 80px; + border-radius: 50%; + border: 1px solid rgba(0, 0, 0, 0.5); +} +.profileText { + width: calc(100% - 130px); + min-width: 200px; + display: flex; + flex-direction: column; + justify-content: center; +} +.profileText h2 { + margin: 0; +} +.profileText p { + margin-top: 5px; +} + /* components - inputs */ input::placeholder, textarea::placeholder { diff --git a/assets/css/pretendo-home.css b/assets/css/pretendo-home.css index ba16187..64ba7fd 100644 --- a/assets/css/pretendo-home.css +++ b/assets/css/pretendo-home.css @@ -30,39 +30,6 @@ header h3 { font-size: 1.1rem; } -/* profiles */ -.cardProfiles { - display: flex; - flex-wrap: wrap; - justify-content: space-between; -} -.profile { - min-width: 250px; - width: 50%; - max-width: 550px; - margin-bottom: 10px; - display: flex; -} -.profile .profileIcon { - margin-right: 10px; - width: 80px; height: 80px; - border-radius: 50%; - border: 1px solid rgba(0, 0, 0, 0.5); -} -.profileText { - width: calc(100% - 130px); - min-width: 200px; - display: flex; - flex-direction: column; - justify-content: center; -} -.profileText h2 { - margin: 0; -} -.profileText p { - margin-top: 5px; -} - /* news cards */ .smallCard { padding: 20px;