-
Notifications
You must be signed in to change notification settings - Fork 1
/
aboutstyle.css
110 lines (93 loc) · 1.34 KB
/
aboutstyle.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
body
{
font-family: "Roboto";
padding: 0px;
margin: 0px;
box-sizing: border-box;
}
.logo-text {
padding: 5px;
margin: 10px;
}
header {
display: flex;
justify-content: space-between;
padding: 0 20px;
border-bottom: 1px solid lightgray;
box-shadow: 1px 1px 5px rgba(10, 10, 10, 0.5);
}
.nav {
display: flex;
justify-content: space-between;
gap: 60px;
margin: 20px;
list-style-type: none;
}
a {
text-decoration: none;
color: black;
}
a:hover {
color: rgb(147, 144, 144);
}
.logo {
display: flex;
justify-content: flex-start;
align-items: center;
}
.head
{
position: absolute;
top: 10%;
left: 30%;
padding: 5px;
}
.cardContainer {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 5rem;
box-sizing: border-box;
padding: 1rem;
}
.card
{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
border-radius: 10px;
text-align: center;
margin: auto;
max-width: 350px;
}
.cardContainer img
{
border-radius: 50%;
width: 100px;
}
.title
{
color: grey;
font-size: 18px;
}
button
{
border: none;
outline: 0;
display: inline-block;
padding: 8px;
color: white;
background-color: #000;
text-align: center;
cursor: pointer;
width: 100%;
font-size: 18px;
}
a
{
text-decoration: none;
font-size: 22px;
color: black;
}
button:hover, a:hover
{
opacity: 0.7;
}