generated from fullstack-decal/project1-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
139 lines (119 loc) · 2.15 KB
/
styles.css
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
* {
background-color: #222;
font-family: Inter, sans-serif;
color: white;
}
html {
box-sizing: border-box;
overflow-y: scroll;
}
.header {
overflow: hidden;
padding: 10px 10px;
}
.header a {
float: right;
font-family: 'Menlo', Helvetica, Arial, sans-serif;
color: #a0aec0;
text-align: center;
padding: 10px;
text-decoration: none;
font-size: 1.2rem;
line-height: 15px;
border-radius: 4px;
}
.header a:hover {
color: #cbd5e0;
}
.container {
max-width: 1024px;
margin: 0 auto;
padding-left: 3rem;
padding-right: 3rem;
position: relative;
}
.small-title {
font-family: Menlo, SFMono-Regular, Consolas, Roboto Mono, Droid Sans Mono, Liberation;
text-transform: uppercase;
}
.title {
font-weight: 600;
color: #edf2f7;
font-size: 1.4rem;
line-height: 1.2;
margin-bottom: 0.5em;
}
.info {
color: #cbd5e0;
}
.top {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.top_left {
flex-direction: column;
flex-grow: 1.5;
margin-top: 2rem;
margin-right: 6rem;
}
.top_right {
flex-direction: column;
}
.top_name {
font-family: 'Playfair Display', 'Times New Roman', serif;
color:white;
font-size: 100px;
}
.top_media {
list-style: none;
margin: 2rem 0;
padding: 0;
display: flex;
flex-direction: row;
align-items: center;
z-index: 1;
position: relative;
}
ion-icon {
font-size: 35px;
color: #718096;
margin-right: 30px;
}
ion-icon:hover {
color: #cbd5e0;
}
.portrait {
max-width: 15em;
max-height: 20em;
width: auto;
height: auto;
border-radius: 25px;
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 50px;
margin-bottom: 50px;
}
.cards {
display: grid;
grid-gap: 1rem;
grid-template-columns: auto auto;
}
.preview-image {
max-width: 50em;
max-height: 50em;
width: auto;
height: auto;
border-radius: 25px;
display: block;
width: 80%;
margin-right: auto;
}
.message-label {
font: Inter, sans-serif;
}
.ending {
font: 10px Arial, sans-serif;
text-align: center;
}