-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
95 lines (82 loc) · 1.33 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
@media (max-width: 2560px) {
/* For a screen < 960px, this CSS will be read */
.card {
width: 50%;
}
}
@media (max-width: 960px) {
/* For a screen < 960px, this CSS will be read */
.card {
width: 70%;
}
}
@media (max-width: 720px) {
/* For a screen < 720px, this CSS will be read */
.card {
width: 70%;
}
}
@media (max-width: 540px) {
/* For a screen < 540px, this CSS will be read */
.card {
width: 70%;
}
}
body {
background-color: rgb(250,250,250);
font-family: Roboto;
}
.h1 {
font-weight: 700
font-size: 30;
}
.profile {
object-fit: cover;
width:150px;
height:150px;
border-radius: 50%;
opacity: 1;
}
a {
font-family: Roboto;
color: #048BA8;
text-decoration: none;
}
.card {
background-color: rgb(225,225,225);
border-radius: 3px;
box-shadow: 5%;
/*width: 50%;*/
margin: 30px auto;
text-align: center;
padding: 30px;
}
.btn-red {
margin: 10px;
padding: 7px;
background-color: rgb(250,24,37);
color: white;
border-radius: 5px
}
.btn-red:hover {
margin: 10px;
padding: 7px;
background-color: rgba(250,24,37, 0.8);
color: white;
border-radius: 5px
}
.list-inline > li {
display: inline-block;
padding: 0px 10px;
}
.list-inline {
list-style: none;
padding-left: 0px;
}
.fab {
font-size: 30px;
}
.fab:hover {
font-size: 30px;
opacity: 0.8;
}