forked from joaquin-mari/Augsburg-Developers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProfileScreen.css
47 lines (40 loc) · 944 Bytes
/
ProfileScreen.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
.info-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* increase the minmax value */
grid-gap: 30px;
overflow: auto; /* add scroll bar when content is more */
}
.profile-item {
background: #f2f2f2;
border-radius: 10px;
padding: 10px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 24px; /* decrease the font size of h1 */
margin-bottom: 20px;
}
.logout-btn {
font-size: 14px; /*decrease the font size of button */
background-color: #ff2567;
color: white;
border: none;
border-radius: 5px;
padding: 10px 20px;
cursor: pointer;
grid-column: 1 / -1;
margin: 10px 0 60px 0;
}
h4 {
font-size: 14px; /*decrease the font size of h4 */
}
p {
font-size: 12px; /*decrease the font size of p */
}
.profile-screen {
padding: 20px 50px 50px 50px;
font-size: 10px;
}
.hidden {
visibility: hidden;
}