-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct.css
More file actions
90 lines (79 loc) · 1.72 KB
/
product.css
File metadata and controls
90 lines (79 loc) · 1.72 KB
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
html,body{
overflow-x: hidden;
}
.dark-mode .desktopwrapper #card .card{
background-color: black;
color: white;
box-shadow: 2px 4px 8px 2px rgba(205, 201, 201, 0.19), 0 6px 20px 0 rgba(205, 201, 201, 0.19);
}
.dark-mode .mobilewrapper #mobileCard .card{
background-color: black;
color: white;
box-shadow: 2px 4px 8px 2px rgba(205, 201, 201, 0.19), 0 6px 20px 0 rgba(205, 201, 201, 0.19);
}
.dark-mode {
background-color: black;
color: white;
}
body {
background-color: white;
color: black;
}
.btn{
border: none;
background-color: transparent;
}
.navbar{
border-bottom: solid rgba(128, 128, 128, 0.289);
}
.desktopwrapper .navbar p {
margin-left: 50px ;
}
.mobilewrapper .navbar p {
margin-left: 10px ;
}
.desktopwrapper .navbar .btn{
margin-right: 50px;
}
.mobilewrapper .navbar .btn{
margin-right: 10px;
}
.desktopwrapper #card .card{
border: transparent;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.mobilewrapper #mobileCard .card{
border: transparent;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.desktopwrapper #card{
width: 50%;
height: 50%;
align-items: center;
margin-left: 25%;
margin-top: 30px;
}
.mobilewrapper #mobileCard{
width: 80%;
height: 90%;
margin-left:10%;
margin-top: 20px;
}
#card .card .description,p,h3{
padding-left: 20px;
padding-top: 20px;
}
#mobileCard .card .description,p,h3{
padding-left: 10px;
padding-top: 10px;
}
@media screen and (max-width: 766px) {
.desktopwrapper {
display:none;
}
}
@media screen and (min-width: 767px) {
.mobilewrapper {
display:none;
}
}