-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (74 loc) · 1.44 KB
/
style.css
File metadata and controls
82 lines (74 loc) · 1.44 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
body {
margin: 0;
padding: 0;
font-size: 18px;
color: var(--tg-theme-text-color);
background: var(--tg-theme-bg-color);
}
.container {
max-width: 385px;
}
.inner {
display: grid;
grid-template-columns: auto auto;
/* justify-content: start; */
align-items: stretch;
width: 100%;
margin: 50px 0px;
/* background-color: #1cd325; */
padding: 0 10px;
}
.img {
width: 150px;
}
.item {
text-align: center;
-webkit-box-shadow: 0px 5px 10px -4px rgba(34, 60, 80, 0.2);
-moz-box-shadow: 0px 5px 10px -4px rgba(34, 60, 80, 0.2);
box-shadow: 0px 5px 10px -4px rgba(34, 60, 80, 0.2);
/* margin: 5px;
padding: 5px; */
}
.item>p {
margin: 0;
padding: 3px;
font-weight: 600;
}
.btn1 {
display: inline-block;
padding: 5px 10px;
border: none;
background: rgb(248, 168, 24);
border-radius: 10px;
color: #fff;
text-transform: uppercase;
font-weight: 700;
font-size: 18px;
transition: background .2s linear;
}
.btns {
display: flex;
justify-content: space-evenly;
}
.btn1:active {
background: lightgreen;
}
.fix {
display: flex;
/* justify-content: space-around; */
align-items: center;
width: 100%;
max-width: 390px;
margin: 0;
padding: 0px 10px;
position: fixed;
top: 0;
background-color: #ffffff;
height: 50px;
-webkit-box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
-moz-box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
}
.fix>span,a {
/* border: 2px solid red; */
}