forked from Czechitas-Koderka-podklady/PROJEKT-Vizitka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (70 loc) · 1.38 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
/* nejsme vcerejsi, pouzivame moderni a intuitivni box model */
html { box-sizing: border-box; }
*, ::after, ::before { box-sizing: inherit; }
/*
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
*/
body {
background-color: #b2bec3;
}
.box {
position: relative;
width: 550px;
background-color: white;
padding: 30px;
margin: 150px auto;
border-radius: 10px;
box-shadow: 5px 5px 10px #272b2e;
}
.foto {
position: absolute;
right: -75px;
top: -75px;
width: 150px;
height: 150px;
border-radius: 50%;
border: 3px solid white;
}
h1 {
color: #d63031;
font-size: 36px;
font-style: bold;
margin: 0 0 20px 0
}
.twitter {
display: block;
background-color: #1da1f2;
text-align: center;
font-size: 18px;
font-style: bold;
padding: 10px;
margin-bottom: 5px;
border-radius: 5px;
color: white;
text-decoration: none;
text-transform: uppercase;
}
.facebook {
display: block;
background-color: #3b5998;
text-align: center;
font-size: 18px;
font-style: bold;
padding: 10px;
border-radius: 5px;
color: white;
text-decoration: none;
text-transform: uppercase;
}
.twitter a:hover {
background-color: #0b7bc1;
}
.facebook a:hover {
background-color: #2b406e;
}