-
Notifications
You must be signed in to change notification settings - Fork 0
/
links-tree.css
111 lines (95 loc) · 1.8 KB
/
links-tree.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
:root{
font-size: 62.5%;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-image: url("https://wallpaperaccess.com/full/4349189.jpg");
background-repeat: no-repeat;
background-size: cover;
width: 100%;
}
main{
height: 100vh;
position: relative;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.container {
width: 28rem;
padding: 1rem 2rem;
background-color: rgba(255, 255, 255, 0.45);
border-radius: 2rem;
border: 0.1rem solid rgba(255, 255, 255, 0.25);
box-shadow: 0 0 1rem 0.1rem rgba(0, 0, 0, 0.25);
backdrop-filter: blur(1.5rem);
min-width:25rem;
box-shadow: rgb(37 39 89 / 8%) 0px 8px 8px 0;
}
.image {
width: 40%;
height: auto;
border-radius: 5rem;
display: block;
margin: 1rem auto;
}
hr{
border-color: #673146;
}
h1,
.occupation {
text-align: center;
}
h1 {
font-family: Muli, sans-serif;
font-weight:700;
font-size: 2.3rem;
}
.occupation {
margin-bottom: 0.5rem;
font-size: 1.5rem;
font-family: "Space Mono", monospace;
}
.link-boxes {
margin: 2rem 1rem;
font-family: Muli, sans-serif;
font-weight:700;
font-size: 1.4em;
text-transform: capitalize;
}
.link-boxes a {
text-decoration: none;
display: block;
color: #27213b;
border: 0.1rem solid #673146;
text-align: center;
margin: 0.7rem;
border-radius: 0.5rem;
padding: 0.3rem;
transition: all 200ms ease-in-out;
box-shadow: rgb(37 39 89 / 8%) 0px 8px 8px 0;
}
.link-boxes a:hover {
border: 0.1rem solid #27213b;
background-color:#f8923b;
cursor: pointer;;
}
.location {
text-align: center;
margin: 0.7rem;
font-size: 1.2rem;
font-family: "Space Mono", monospace;
}
@media only screen and (min-width:992px){
.image{
width:40%;
}
h1{
font-size: 2.4rem;
}
}