generated from Digitalni-akademie-Web-Jaro-2020-Praha/Ukol-boty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
141 lines (136 loc) · 2.23 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/* nejsme vcerejsi, pouzivame moderni a intuitivni box model */
html {
box-sizing: border-box;
}
*,
::after,
::before {
box-sizing: inherit;
}
body {
text-rendering: optimizeLegibility;
}
/*
BARVY
svetle sede pozadi #f5f5f5
tmavsi seda #959595
barevny prechod nahore #06d7c1
barevny prechod dole #50cc49
zelena cara #06d7c1
oranzova #f15f42
PISMO
Rubik - pouzite rezy pisma regular 400 a medium 500
https://fonts.google.com/specimen/Rubik
*/
/* ----- zde zacni psat vlastni css ----- */
.zbozi {
width: 670px;
height: 440px;
background-color: white;
border-radius: 2%;
margin-left: auto;
margin-right: auto;
margin-top: 50px;
font-family: "Rubik", sans-serif;
position: relative;
}
.vizual {
width: 50%;
height: 100%;
background-image: linear-gradient(#06d7c1, #50cc49);
border-radius: 2% 0% 0% 2%;
position: relative;
}
.logo {
position: absolute;
top: 30px;
left: 30px;
}
.slogan {
position: absolute;
top: 60px;
left: 30px;
font-size: 16px;
font-weight: 500;
color: white;
}
.bota {
position: absolute;
top: 140px;
right: 5px;
}
.cenovka {
position: absolute;
bottom: 30px;
right: 30px;
text-align: right;
color: white;
}
.cena {
font-size: 28px;
font-weight: 500;
}
.zaruka {
font-size: 12px;
font-weight: 400;
}
.detaily {
position: absolute;
right: 30px;
top: 30px;
bottom: 30px;
width: 275px;
}
.nazev {
font-size: 20px;
font-weight: 500;
text-transform: uppercase;
margin: 0px;
}
.produkt {
color: #959595;
}
.popis {
padding: 30px 0px;
margin: 0;
border: solid;
border-width: 0 0 2px 0;
border-color: #06d7c1;
}
.parametr {
text-transform: uppercase;
font-size: 17px;
font-weight: 500;
padding-top: 30px;
margin: 0px;
}
.velikosti li {
display: inline-block;
padding: 3px;
margin: 5px;
}
ul {
padding: 0px;
margin: 0px;
position: absolute;
}
.velikosti li:hover {
border: solid;
border-radius: 50%;
border-width: 1px;
color: #f15f42;
}
.akce {
background-color: #f15f42;
width: 150px;
border-radius: 10%;
text-align: center;
padding: 15px;
position: absolute;
bottom: 0px;
}
.tlacitko {
color: white;
text-decoration: none;
text-transform: uppercase;
}