-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (82 loc) · 1.51 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
.container {
width: 100%;
height: 90vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.main-div {
margin-top: 2rem;
width: 20rem;
padding: 2rem 1rem;
border-radius: 0.6rem;
box-shadow: 0px 0px 6px 0px black;
}
.img-container {
width: 70px;
height: 70px;
position: relative;
margin: auto;
margin-bottom: .7rem;
}
.img-container img {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
border-radius: 50%;
}
.main-content {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.job {
font-weight: bold;
color: #e65b00;
}
.author, .job, .text {
margin-bottom: .5rem;
}
.text {
text-align: center;
}
.btnContainer {
color: #e65b00;
font-size: 1.5rem;
width: 50px;
display: flex;
justify-content: space-around;
}
.randomBtn {
margin-top: 1rem;
font-size: 1rem;
background-color: #e65b00;
color: #fff;
border-radius: 0.5rem;
padding: 0.5rem 0.5rem;
border: none;
cursor: pointer;
}
.randomBtn:hover {
color: rgb(168, 160, 160);
background-color:#c4560d;
}
.fa-solid {
cursor: pointer;
}
.fa-solid:hover {
color: rgb(28, 67, 104);
}
footer{
text-align: center;
}