-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (78 loc) · 1.63 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
*,
*::before,
*::after{
padding: 0;
margin: 0;
box-sizing: border-box;
text-decoration: none;
list-style: none;
border: none;
font-family: 'Roboto', sans-serif;
}
:root{
--main-color: #d98b16;
}
.container{
width: 60%;
height: 95vh;
/* border: 5px solid rgba(235, 34, 34, 0.646); */
box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.183);
background-color: #f5f5f5;
border-radius: 15px;
margin: auto;
margin-top: 15px;
text-align: center;
padding: 20px;
}
/* font-family: 'Roboto', sans-serif;
font-family: 'Righteous', cursive;
font-family: 'Indie Flower', cursive;
font-family: 'Anton', sans-serif; */
.theme{
width: 100%;
height: 90px;
border-radius: 15px;
cursor: pointer;
}
.boxes{
display: grid;
grid-template-columns: repeat(5,1fr);
gap: 10px;
margin-bottom: 15px;
}
.btn{
width: 100%;
height: 150px;
background-color:var(--main-color);
border-radius: 20px;
margin-bottom: 20px;
display: flex;
justify-content: center;
align-items: center;
color: white;
}
.inputs{
width: 100%;
display: flex;
justify-content: space-between;
}
.refresh{
width: 300px;
height: 60px;
background-color: var(--main-color);
border-radius: 15px;
color: white;
margin-top: 20px;
cursor: pointer;
}
.inputdet{
width: 15%;
height: 30px;
border-radius: 10px;
text-decoration: none;
text-align: center;
box-shadow: 8px 5px 5px rgb(167, 167, 167);
}
.mobilview{
display: none;
}