-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
105 lines (86 loc) · 1.32 KB
/
index.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
body {
margin: 0;
padding: 0;
}
.logo {
width: 150px;
}
.avatar {
width: 50px;
height: 50px;
border-radius: 50%;
margin-top: 10px;
}
h2 {
font-size: 20px;
font-weight: 600;
display: block;
margin: 10px
}
h2 span {
display: block;
font-size: smaller;
font-weight: 200;
}
h1,
h3 {
margin: 0;
}
.margin {
margin-left: 25px;
}
header .avatar {
margin-right: 25px;
}
section h3,
p {
margin-left: 10px;
}
p {
font-weight: bold;
}
p span {
font-weight: 200;
}
/* Containers */
.container {
min-width: 360px;
max-width: 600px;
margin: 5px auto;
}
.header-container {
margin: 5px auto;
display: flex;
justify-content: space-between;
border-bottom: 1px solid lightgray;
background-color: white;
}
.flex-container {
display: flex;
justify-content: flex-start;
}
.container-end {
border-bottom: 30px solid lightgray;
display: block;
margin: auto;
}
.main-image {
min-width: 360px;
max-width: 800px;
width: 100%;
margin: 0 auto;
display: block;
}
/* Buttons actions and styles */
.button {
width: 25px;
padding: 5px;
cursor: pointer;
}
.button:hover,
.button:focus {
filter: opacity(.5) drop-shadow(0 0 0 white);
}
.button:active {
filter: opacity(.5) drop-shadow(0 0 0 red);
}