-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
101 lines (92 loc) · 1.97 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
@import url('https://fonts.googleapis.com/css2?family=Cookie&family=Poppins:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root {
--textColor: white;
}
/**********BASIC STYLES**********/
html {
background-attachment: fixed;
background: url('/images/blue-pink.svg');
background-repeat: no-repeat;
background-size: cover;
}
body {
color: var(--textColor);
font-family: 'Poppins', sans-serif;
font-size: 16px;
font-weight: 500;
margin: 10px;
text-align: center;
}
main {
padding: 20px;
}
/**********CARD**********/
.card {
background-color: rgba(0, 0, 0, 0.3);
border-radius: 20px;
display: flex;
flex-direction: column;
margin: auto;
max-width: 500px;
padding: 10px;
}
/**********TYPOGRAPHY**********/
#userName {
font-weight: 800; /*bold*/
}
#description {
font-weight: 600;
}
a {
color: var(--textColor);
text-decoration: none;
}
/**********PROFILE PICTURE**********/
#profile {
border-radius: 50%; /*round image*/
height: 130px;
margin: 10px auto;
width: 130px;
}
/**********SOCIAL**********/
.social a {
border-radius: 10px;
border: 2px solid var(--textColor);
display: block; /*each link takes a whole line*/
margin: 10px;
padding: 10px;
}
/**********ICONS**********/
.icons {
display: inline-flex;
flex-wrap: nowrap;
justify-content: center;
}
.icons a {
padding: 10px 20px;
}
/**********ALGORAND**********/
#algorand {
height: 30px;
padding-top: 5px;
}
/**********BUY ME A COFFEE**********/
#coffee {
background: #FFDD00;
border-radius: 10px;
border: 2px solid #FFDD00;
color: black;
font-family: 'Cookie', cursive;
font-size: 24px;
}
/**********FOOTER**********/
footer a {
color: #FFDD00;
font-weight: 600;
text-decoration: none;
}
#israel {
background-color: #005EB8;
border-color: #005EB8;;
}