This repository has been archived by the owner on Jul 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (91 loc) · 1.62 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
html {
font-family: sans-serif;
}
body {
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
flex-direction: column;
}
#main-container {
display: flex;
height: 14em;
width: 28em;
align-items: center;
flex-direction: column;
box-shadow: 0 0 6px 0 rgba(0,0,0,0.5);
border-radius: 1em;
}
#loading-icon {
margin: auto auto;
}
#ext-icon {
height: 75%;
}
.input-container {
display: flex;
min-width: 50%;
justify-content: space-between;
} .input-container input[type=text] {
display: inline-block;
margin-right: 8px;
}
input {
border-radius: 0.5em;
}
.form {
position: relative;
display: flex;
align-items: center;
flex-direction: column;
}
.btn {
color: black;
background-color: white;
border-radius: 0.5em;
} .btn.primary {
color: white;
background-color: #176dce;
}
.hidden {
display: none;
}
.card {
height: 6em;
margin: 0 2em;
margin-bottom: 1em;
display: inline-flex;
align-items: center;
}
.card-details { flex: 1; }
.card-details h4, .card-details p {
margin: 0;
} .card-details p {
font-size: 0.8rem;
}
.subtext {
font-size: 0.6rem;
color: #333;
margin: 0.5em 0 !important;
}
.space-bottom-none {
margin-bottom: 0;
}
#about {
display: flex;
width: 28em;
justify-content: space-between;
align-items: center;
font-size: 1rem;
} #about a {
text-decoration: none;
}
.ico-label-container {
display: flex;
align-items: center;
} .ico-label-container img {
height: 2.5em;
border-radius: 50%;
margin-right: 1em;
}