-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
98 lines (98 loc) · 2.04 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
* {
font-family: Inter, sans-serif;
}
body {
background-color: hsl(0, 0%, 8%);
width: 100vw;
display: flex;
justify-content: center;
margin: 0 0;
}
.container {
margin-top: 20vh;
background-color: hsl(0, 0%, 12%);
min-width: 300px;
max-width: 350px;
min-height: 400px;
overflow: hidden;
border-radius: 12px;
}
.image-container {
width: 100%;
min-height: 100px;
display: flex;
justify-content: center;
align-items: center;
padding: 15px 0 0 0;
user-select: none;
}
.image-container img {
max-width: 70px;
height: auto;
border-radius: 50%;
}
.name-container {
width: 100%;
min-height: 67px;
font-size: 24px;
text-align: center;
}
.name-container h1 {
margin: 0 0;
font-size: 24px;
text-align: center;
}
.name-container div {
width: 100%;
height: 50%;
padding: 6px 0;
}
.name-container div:nth-child(1) {
font-weight: 500;
color: hsl(0, 0%, 100%);
}
.name-container div:nth-child(2) {
font-size: 14px;
font-weight: 600;
color: hsl(75, 94%, 57%);
}
.paragraph-container {
width: 100%;
min-height: 40px;
font-size: 12px;
text-align: center;
color: white;
padding-top: 7px;
}
.buttons-container {
width: 100%;
min-height: 250px;
display: flex;
flex-direction: column;
text-align: center;
padding-bottom: 25px;
user-select: none;
}
.buttons-container a {
min-width: 270px;
min-height: 38px;
margin: 7px 31px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 12px;
background-color: hsl(0, 0%, 20%);
transition: all 0.3s ease-in-out;
user-select: none;
flex: 1;
text-decoration: none;
color: white; /* Initial color */
font-weight: 600;
font-size: 13px;
-webkit-tap-highlight-color: transparent;
}
.buttons-container a:hover, .buttons-container a:active {
background-color: hsl(75, 94%, 57%);
color: black;
border-radius: 12px;
}