itty-bitty/docs/render/contact.css

164 lines
2.8 KiB
CSS
Raw Permalink Normal View History

2023-05-29 05:55:31 +00:00
* {
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}
:root {
--shadow-color: 0deg 0% 63%;
--shadow-elevation-low:
0px 0.5px 0.6px hsl(var(--shadow-color) / 0.34),
0px 0.8px 0.9px -1.2px hsl(var(--shadow-color) / 0.34),
0px 1.9px 2.1px -2.5px hsl(var(--shadow-color) / 0.34);
--shadow-elevation-medium:
0px 0.5px 0.6px hsl(var(--shadow-color) / 0.36),
0px 1.5px 1.7px -0.8px hsl(var(--shadow-color) / 0.36),
0px 3.8px 4.3px -1.7px hsl(var(--shadow-color) / 0.36),
-0.1px 9.4px 10.6px -2.5px hsl(var(--shadow-color) / 0.36);
}
body {
color:#16161d;
background-color: #eeeeef;
display:flex;
justify-content:center;
align-items: center;
min-height:100vh;
}
2023-05-29 06:14:38 +00:00
#arc-theme {
background:
linear-gradient(0deg, var(--arc-background-gradient-overlay-color1) 0%, transparent 100%),
linear-gradient(90deg, var(--arc-background-gradient-color0) 0%, var(--arc-background-gradient-color1) 100%);
position:fixed;
z-index:-1;
top:0;
left:0;
right:0;
bottom:0;
opacity: 1.0;
pointer-events: none;
}
2023-05-29 05:55:31 +00:00
.contact {
2023-05-29 15:58:38 +00:00
background-color: rgba(255,255,255,0.5);
2023-05-29 05:55:31 +00:00
width:320px;
2023-05-29 15:58:38 +00:00
min-height:518px;
2023-05-29 05:55:31 +00:00
box-shadow: var(--shadow-elevation-medium);
2023-05-29 15:58:38 +00:00
margin-bottom:10vh;
border-radius:10px;
2023-05-29 05:55:31 +00:00
display:flex;
flex-direction: column;
justify-content: space-between;
2023-05-29 15:58:38 +00:00
border-bottom:8px solid white;
overflow:hidden;
2023-05-29 05:55:31 +00:00
}
2023-06-06 19:05:48 +00:00
.firstGroup {
display:flex;
flex-direction: column;
width:320px;
}
2023-06-06 19:07:54 +00:00
/* @media only screen and (min-width: 640px) {
2023-06-06 19:05:48 +00:00
.contact {
flex-direction: row;
width:640px;
}
2023-06-06 19:07:54 +00:00
} */
2023-05-29 05:55:31 +00:00
.header {
flex: 1 1 auto;
2023-05-29 06:14:38 +00:00
padding-top:1em;
2023-05-29 15:58:38 +00:00
display:flex;
flex-direction: column;
2023-06-06 19:05:48 +00:00
padding: 24px 8px 8px 0px;
2023-05-29 15:58:38 +00:00
}
.content {
border-top:8px solid white;
2023-05-29 05:55:31 +00:00
}
2023-05-29 15:58:38 +00:00
img.profile {
aspect-ratio: 1.0;
background-color:rgba(0,0,0, 0.025);
2023-06-06 19:05:48 +00:00
width:100%;
2023-05-29 15:58:38 +00:00
}
/* .header img {
width:64px;
height:64px;
border-radius:100%;
float:right;
order:-1;
margin-left:1em;
} */
2023-05-29 05:55:31 +00:00
.icon {
2023-05-29 06:14:38 +00:00
order:-1;
2023-05-29 15:58:38 +00:00
padding: 6px 0;
2023-06-06 19:05:48 +00:00
margin-right:0;
2023-05-29 15:58:38 +00:00
align-self: flex-start;
height: 8px;
2023-06-06 19:05:48 +00:00
min-width:24px;
height:24px;
2023-05-29 15:58:38 +00:00
}
.icon img {
width: 24px;
height:24px;
border-radius:2px;
2023-05-29 05:55:31 +00:00
}
.row {
display:flex;
text-decoration:none;
color:black;
flex-direction: row;
2023-05-29 06:14:38 +00:00
/* border-top:1px solid #eee; */
2023-05-29 15:58:38 +00:00
min-height:40px;
2023-05-29 05:55:31 +00:00
align-items: center;
2023-05-29 15:58:38 +00:00
background:white;
2023-05-29 05:55:31 +00:00
}
2023-06-06 19:05:48 +00:00
.header div.row {
padding: 0 0px;
margin: 8px 16px 0 16px;
order:1;
background-color:transparent
}
div.row a {
padding: 8px;
color:black;
}
2023-05-29 05:55:31 +00:00
.field {
flex: 1 1 auto;
2023-05-29 07:08:48 +00:00
overflow:hidden;
text-overflow: ellipsis;
2023-05-29 15:58:38 +00:00
white-space: pre-wrap;
padding:4px 0;
2023-06-06 19:05:48 +00:00
padding-left:16px;
2023-05-29 05:55:31 +00:00
}
2023-06-06 19:05:48 +00:00
.icon svg {width: 24px;height: 24px;}
2023-05-29 15:58:38 +00:00
a, h1, div.memo, .header div {
2023-05-29 06:14:38 +00:00
padding: 0 24px;
2023-05-29 05:55:31 +00:00
margin:0;
}
2023-05-29 06:14:38 +00:00
div.memo {
opacity:0.5
}
2023-05-29 05:55:31 +00:00
h1 {
font-weight:normal;
font-size:24px;
2023-06-21 14:36:35 +00:00
padding-bottom:12px;
2023-05-29 05:55:31 +00:00
}
.contact a:hover {
2023-05-29 06:14:38 +00:00
background-color: #fafafa;
2023-05-29 05:55:31 +00:00
}