-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (83 loc) · 1.8 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
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: 'Open Sans', sans-serif;
background: #222;
background-image: url('https://source.unsplash.com/1600x900/?landscape');
font-size: 120%;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.card {
background: #000000d0;
color: white;
padding: 2em;
border-radius: 30px;
width: 100%;
max-width: 420px;
margin: 1em;
}
h1.temp {
margin: 0;
margin-bottom: 0.4em;
}
.social {
background: #000000d0;
color: white;
padding: 0.4em;
border-radius: 30px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
margin-top: 0.3em;
}
.social a {
text-decoration: none;
color: white;
margin-right: 0.6em;
margin-left: 0.6em;
}
.social a:hover img {
transform: scale(1.1);
transition: transform 0.3s ease-in-out;
filter: brightness(150%);
}
.flex {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
margin-top:0.5em;
}
.bottom {
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
color: white;
font-size: 12px;
margin-bottom: 0.5em;
white-space: nowrap;
text-shadow: 2px 2px 4px #000000;
font-family: 'Open Sans', sans-serif;
}
.bottom a{
color: white;
text-decoration: none;
font-size: 15px;
}
.bottom a:hover {
transform: scale(1.1);
transition: transform 0.3s ease-in-out;
filter: brightness(150%);
color: aqua;
}