-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
133 lines (106 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
:root {
--pryColor: #000;
--secColor: #fafafa;
--thrColor: #d1d1d1;
--pryFont: 'Heebo', sans-serif;
--secFont: 'Lato', sans-serif;
}
body {
background-color: var(--secColor);
margin: 0;
}
.container {
width: 100%;
max-width: 500px;
margin: 0 auto;
}
#outp {
display: none;
transition: 0.3s ease-in-out;
}
#info {
width: 100%;
margin: 0 auto;
margin-top: 10px;
border-bottom: 2px solid var(--thrColor);
border-radius: 5px;
padding: 15px;
display: block;
background-color: var(--thrColor);
}
.precioIn {
width: 100%;
margin: 0 auto;
border-bottom: 2px solid var(--thrColor);
padding: 15px;
}
.precioIn form {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
grid-template-areas: "i1 i1" "i2 i2" "b1 b2";
grid-column-gap: 0.5rem;
}
.i1 {
grid-area: i1;
}
.i2 {
grid-area: i2;
}
.precioOu {
width: 100%;
margin: 0 auto;
border-bottom: 2px solid var(--pryColor);
padding: 5px;
}
.pos {
width: 100%;
margin: 0 auto;
border-bottom: 2px solid var(--thrColor);
padding: 5px;
}
.tit {
text-align: center;
font-family: var(--pryFont);
font-weight: 800;
font-size: 25px;
margin-bottom: 0;
}
.st {
font-family: var(--secFont);
font-size: 18px;
}
.input {
display: block;
width: 96%;
border-style: none;
border-radius: 3px;
background-color: var(--thrColor);
padding: 10px;
margin: 5px 0px;
font-family: var(--secFont);
font-size: 15px;
}
.input:focus {
font-size: 20px;
border-style: none;
transition: 0.1s ease-in-out;
}
.btn {
width: 60%;
justify-self: center;
margin-top: 5px;
border-style: none;
background-color: var(--thrColor);
padding: 10px;
border-radius: 3px;
font-size: 12px;
font-family: var(--pryFont);
font-weight: 800;
border: 1px solid var(--pryColor);
}
.btn:hover, .btn:target {
background-color: var(--pryColor);
color: var(--thrColor);
cursor: pointer;
}