-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (79 loc) · 1.49 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{
background-color: #170840;
font-family: 'Montserrat', sans-serif;
}
.main-content{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position:absolute;
top:35vh;
left:50vw;
transform: translate(-50%,-50%);
height:calc(100vh-100px);
}
.card{
display: flex;
flex-direction: column;
flex:1;
color:white;
background-color: #089d5a;
min-width: 300px;
min-height:150px;
border-radius: 8px;
overflow: hidden;
}
#quote{
font-size: 25px;
margin: 25px;
/* flex: 1 1 auto; */
}
.card footer{
display: flex;
align-items: center;
justify-content: space-between;
min-height:50px;
background-color: #025730;
margin-top: auto;
}
#author{
margin-left: 10px;
}
.bi-twitter{
color:white;
font-size:25px;
margin-right: 10px;
}
.bi-heart-fill{
color:red;
}
button{
cursor:pointer;
color: white;
width:150px;
height:50px;
background-color: black;
margin-top:50px;
border-radius: 8px;
}
.creator-footer{
font-size: 12px;
color:white;
position: fixed;
bottom: 0;
width: 100%;
}
.creator-footer>p{
text-align: center;
}
.github-link{
color:white;
text-decoration: none;
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
.card{
width:500px;
}
}