summaryrefslogtreecommitdiff
path: root/preact/demo/people/styles/profile.scss
blob: f74b76043bc3b16a4274cb54638ac4bb52a3c815 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#people-app {
	.profile {
		display: flex;
		flex-flow: column;
		align-items: center;
		margin: 32px 0;
		animation: appear-from-left 0.5s forwards;
		--avatar-size: 80px;
	}

	.profile h2 {
		text-transform: capitalize;
	}

	.profile .details {
		display: flex;
		flex-flow: column;
		align-items: stretch;
		margin: 16px auto;
	}

	.profile .details p {
		margin-top: 8px;
		margin-bottom: 8px;
	}
}