-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (85 loc) · 1.32 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
body{
background-color: rgb(255, 255, 255);
color: rgb(0, 0, 0);
font-family: Arial, Helvetica, sans-serif;
}
.wrapper{
padding: 1em;
}
.brand{
font-weight:800;
font-size: 2em;
}
.compart{
color: grey;
}
.cards{
width: 3000px;
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
padding: 1em;
display: flex;
}
.card{
color: grey;
background-color: grey;
padding: 5px;
height: fit-content;
width: 30em;
margin-right: 10px;
border-radius: 4px ;
overflow: hidden;
margin-top:3em;
z-index: 0;
}
.card a{
color: grey !Important;
}
@font-face{
font-family: arialBlack;
src: url(./checkout/css/arial-black.ttf) ;
}
.medium{
width:15em ;
transition: all 1s;
}
.medium:hover{
width: auto;
}
.cardContent{
padding-left: 1em;
height: 100%;
}
.cardContent h2{
color: white !Important;
}
.hover{
transition: all 1s;
}
.hover:hover{
transform: scale(1.02);
color: white;
}
.grow{
transition: all 1s;
}
.grow:hover{
filter: invert(1);
}
.sideways{
transition: all 1s;
}
.sideways:hover{
width: 90%
}
.btn{
background-color: rgb(255, 255, 255);
padding:4px 20px;
border-radius: 5px;
border: none;
font-size: 1.2em;
}
textarea:focus, input:focus{
outline: none;
}