-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle-MacBook Pro.css
76 lines (76 loc) · 1.47 KB
/
style-MacBook Pro.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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.app{
display: flex;
flex-direction: column;
align-items: center;
color: #C8D1D9;
font-family: Arial, Helvetica, sans-serif;
background-color: #010409;
justify-content: center;
height: auto;
padding: 50px 0 50px 0;
}
.profile-header{
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
row-gap: 25px;
padding: 50px 25px 50px 25px;
}
.profile-header img{
width: 200px;
border-radius: 100%;
}
.profile-header :nth-child(2){
font-size: 40px;
}
.profile-header :nth-child(3){
font-size: 20px;
font-weight: 500;
}
.profile-info{
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
padding: 0 25px 50px 25px;
}
button{
padding: 10px;
font-size: 15px;
border-radius: 10px;
border: 2px solid #C8D1D9;
background-color: #21262C;
color: #C8D1D9;
}
button:hover{
border: 2px solid #C8D1D9;
background-color: #373f4a;
color: #C8D1D9;
}
.overview-container{
width: auto;
display: flex;
flex-wrap: wrap;
justify-content: start;
gap: 20px;
padding: 0 10vw 0 10vw;
}
.overview-container article{
color: #C8D1D9;
background-color: #C8D1D9;
padding: 20px;
flex-grow: 1;
flex-basis: 49%;
display: flex;
flex-direction: column;
row-gap: 20px;
border-radius: 15px;
background-color: #010409;
border: 2px solid #30363C;
}