-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
173 lines (135 loc) · 3.34 KB
/
style.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap');
:root{
/* Primary */
--Darkcyan: hsl(185, 75%, 39%);
--Verydarkdesaturatedblue: hsl(229, 23%, 23%);
--Darkgrayishblue: hsl(227, 10%, 46%);
/* Neutral */
--Darkgray: hsl(0, 0%, 59%);
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
/* border: 2px solid red; */
max-width: 100vw;
min-height: 100vh;
background-color: var(--Darkcyan);
display: flex;
flex-direction: column;
place-items: center;
place-content: center;
background-image: url(bg-pattern-top.svg), url(bg-pattern-bottom.svg);
background-repeat: no-repeat,no-repeat;
background-position: right 49vw bottom 39vh, left 44vw top 52vh;
font-family: 'Kumbh Sans', sans-serif;
/* font-size: 18px; */
/* font-size: 1.125rem; */
}
.container{
/* border: 2px solid green; */
margin: 0 auto;
width: 25vw;
height: 60vh;
text-align: center;
background-color: #ffff;
border-radius: 15px;
overflow: hidden;
}
.back_image{
height: 35%;
/* border: 2px solid red; */
background: url(bg-pattern-card.svg);
background-attachment: fixed;
}
.dp_image{
border: 5px solid white;
border-radius: 100px;
position: relative;
top: -50px;
/* background: url(image-victor.jpg) center no-repeat; */
}
.profile {
/* border: 2px solid red; */
color: var(--Darkgrayishblue);
text-align: center;
position: relative;
bottom: 35px;
line-height: 1.6rem;
}
.profile h2{
color: var(--Verydarkdesaturatedblue);
font-size: 1.125rem;
}
.profile span{
color: var(--Darkgray);
font-size: 1.125rem;
font-weight: lighter;
}
.profile p{
color: var(--Darkgray);
font-size: 0.875rem;
}
.info{
/* border: 2px solid red; */
display: flex;
flex-direction: row;
justify-content: space-around;
position: relative;
bottom: -15px;
line-height: 1.4rem;
}
.info h2{
color: var(--Verydarkdesaturatedblue);
font-size: 1.125rem;
}
.info p{
color: var(--Darkgray);
font-size: 0.712rem;
}
hr {
opacity: 0.3;
}
.authorized{
/* border: 2px solid red; */
font-size: 0.6em;
position: relative;
bottom: -70px;
color: var(--Slightly-transparent-white-stat-headings);
}
.authorized a{
color: var(--Slightly-transparent-white-stat-headings);
}
@media only screen and (max-width:600px) {
body{
width: 100vw;
/* min-height: 100vh; */
background-color: var(--Darkcyan);
display: flex;
flex-direction: column;
place-items: center;
place-content: center;
background-position: right 40vw bottom 39vh, left 27vw top 43vh;
font-family: 'Kumbh Sans', sans-serif;
}
.container{
/* border: 2px solid green; */
margin: 0 auto;
min-width: 70vw;
height: 50vh;
text-align: center;
background-color: #ffff;
border-radius: 15px;
overflow: hidden;
}
.info{
position: relative;
bottom: -5px;
}
hr{
position: relative;
bottom: 9px
}
}