-
Notifications
You must be signed in to change notification settings - Fork 11
/
style.css
127 lines (111 loc) · 2.19 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@800&display=swap");
h1 {
font-family: "Roboto Slab", serif;
font-size: 55px;
color: #ff8ae2;
}
body {
font-family: "Roboto", sans-serif;
text-align: center;
background: rgb(7, 37, 64);
background: linear-gradient(
180deg,
rgba(7, 37, 64, 1) 31%,
rgba(24, 61, 93, 1) 100%
);
padding: 0;
margin: 0;
}
.header {
padding: 30px;
background-color: #183d5d;
margin-bottom: 50px;
}
.users {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
color: aliceblue;
}
.card {
background-color: rgba(24, 61, 93, 0.9);
width: 400px;
height: 500px;
margin: 20px;
border-radius: 10%;
box-shadow: 1px 1px 5px black;
transition: 1s ease;
list-style: none;
}
.card:hover {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
transition: 1s ease;
}
img {
width: 350px;
height: 350px;
border-radius: 10%;
border: 10px solid rgb(121, 118, 118);
opacity: 0.5;
transition: 1s ease;
}
img:hover {
opacity: 1;
transition: 1s ease;
}
a {
text-decoration: none;
color: black;
}
a:hover {
color: white;
}
.logo-img {
margin-bottom: auto;
width: 200px;
height: 200px;
border: none;
}
.quot {
font-size: 30px;
color: #ffffff;
font-family: "Manrope", sans-serif;
}
/*
footer
*/
@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,300,700);
* {
font-family: Roboto;
}
.footer-distributed {
background-color: #010E28;
margin-top: 20px;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
box-sizing: border-box;
width: 100%;
text-align: left;
font: normal 16px sans-serif;
padding: 20px 30px;
}
.footer-distributed .footer-left p {
color: #ffffff;
font-size: 14px;
margin: 0;
}
/* Media Queries */
@media (max-width: 600px) {
.footer-distributed .footer-left,
.footer-distributed .footer-right {
float: none;
margin: 0 auto 10px;
}
.footer-distributed .footer-left p.footer-links {
line-height: 1.8;
}
}