-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle_mobile.css
128 lines (100 loc) · 2.1 KB
/
style_mobile.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
@media only screen and (max-width: 768px) {
/*#region General */
/*#endregion*/
/*#region App Section */
#welcome {
border-radius: 8px 8px 8px 8px;
}
.welcome {
text-align: center;
font-size: 2.6vw;
}
.blob-red {
position: absolute;
left: 0px;
bottom: 0px;
border-radius: 0px 0px 0px 8px;
}
.blob-green {
position: absolute;
right: 0px;
top: 0px;
border-radius: 0px 8px 0px 0px;
}
.try-web-app-button {
display: none;
}
.try-web-app-text {
display: none;
}
.download-mobile-app-button {
display: block;
background: #111;
box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.6);
text-decoration: none;
padding: 2vw 4vw;
border-radius: 50px;
}
.download-mobile-app-text {
font-size: 2.4vw;
font-weight: 600;
color: #eee;
}
.mobile-app {
display: none;
}
/*#endregion*/
/*#region Who Section*/
.profile-cards-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.profile-cards-container>div {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.profile-card {
overflow: hidden;
margin: 3vw;
padding: 6vw 2vw 2vw 2vw;
width: 40vw;
aspect-ratio: 2/3;
background: white;
border-radius: 6%;
background-position: 50% 30%;
transition: 0.3s;
}
.profile-card-img {
width: 80%;
margin-bottom: 24px;
}
.profile-card-name {
display: block;
width: 100%;
font-size: 3.2rem;
font-weight: bold;
text-align: center;
text-decoration: underline;
}
.profile-card-role {
display: block;
width: 100%;
font-size: 2.5rem;
font-weight: normal;
text-align: center;
text-decoration: none;
color:#222
}
/*#endregion*/
/*#region Footer */
.contacts {
right: 2vw;
top: 50%;
transform: translateY(-50%);
}
/*#endregion*/
}