forked from Czechitas-Koderka-podklady/PROJEKT-Vizitka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (67 loc) · 1.4 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
/* nejsme vcerejsi, pouzivame moderni a intuitivni box model */
html { box-sizing: border-box;
font-family: 'Nunito', sans-serif;
background-color: #b2bec3;
font-size: 18px;
}
*, ::after, ::before { box-sizing: inherit; }
h1 {
color: #d63031;
margin-top: 0;
margin-bottom: 30px;
}
img {
border-radius: 50%;
border: 3px solid white;
width: 150px;
position: absolute;
right: -75px;
top: -75px;
box-shadow: 5px 5px 7px 0 rgba(0, 0, 0, 0.1);
}
div {
width: 550px;
background-color: white;
border-radius: 10px;
padding: 30px;
position: relative;
box-shadow: 5px 5px 7px 0 rgba(0, 0, 0, 0.1);
margin-top: 150px;
margin-left: auto;
margin-right: auto;
}
.odkaz {
font-weight: bold;
display: block;
color: white;
text-decoration: none;
text-align: center;
text-transform: uppercase;
padding: 10px;
border-radius: 5px;
}
.twitter {
margin-bottom: 5px;
background-color: #1da1f2;
}
.twitter:hover {
background-color:#0b7bc1;
}
.facebook {
background-color: #3b5998;
}
.facebook:hover {
background-color: #2b406e;
}
p {
margin-bottom: 30px;
}
/*
BARVY:
šedá na pozadí stránky: #b2bec3
červená na hlavní nadpis: #d63031
tlačítko Twitter: #1da1f2
tlačítko Twitter aktivní: #0b7bc1
tlačítko Facebook: #3b5998
tlačítko Facebook aktivní: #2b406e
*/