-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle-main.css
More file actions
101 lines (86 loc) · 2.25 KB
/
Copy pathstyle-main.css
File metadata and controls
101 lines (86 loc) · 2.25 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
91
92
93
94
95
96
97
98
99
100
101
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
body{
background-color: rgb(205, 217, 222) ;
background-image: linear-gradient(to right, rgb(205, 217, 222) , rgb(197, 232, 233));
}
h2{
color: rgb(120, 105, 255);
font-size: 4.7rem; font-weight: bolder;
font-family: 'Poppins', sans-serif;
text-align: center; word-spacing: 10px;
padding: 30px;
margin-top: 20px;
}
.container-main{
background-color: rgb(120, 105, 255); border: 2px white; border-radius: 20px;
margin: 10px auto; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-weight: 500; font-size: 1.7rem;
max-width: 350px;
color: yellow;
min-height: 90px;
padding: 20px;
}
select{
margin-top: 5px; padding: 5px;
max-width: 300px;
}
option {
max-width: 300px;
word-wrap: normal !important;
font-size: 20px;
}
button{
margin: 20px; margin-left: 85px; margin-right: 85px; margin-bottom: 0px;
width: 75px; background: rgb(2, 100, 146); color: rgb(254, 255, 209);
padding: 5px;
border: 5px blue; border-radius: 10px;
}
button:hover{
background: rgb(20, 155, 218); color: rgb(170, 252, 77);
}
h4
{
text-align: center;
font-size: larger;
}
.container-main select
{
margin-bottom: 5px;
}
.container{
background-color: rgb(120, 105, 255); border: 2px white; border-radius: 20px;
margin-left: 15px; margin: 55px auto; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-weight: 500; font-size: 1.7rem;
max-width: 900px;
color: yellow;
min-height: 90px;
padding: 20px;
}
table, th, td
{
width: 700px;
max-width: 90vw;
margin-top: 50px;
margin-left: 10px;
margin-right: 10px;
margin: auto;
word-wrap: break-word;
border: 2px solid rgb(3, 77, 64);
border-collapse:collapse;
padding: 10px;
font-family: Georgia, 'Times New Roman', Times, serif; font-size: 1.5rem; font-weight: 600;
}
a {
color: yellow;
}
a:hover{
color: red;
}
#base_inv, #easy_inv, #medium_inv, #hard_inv{
margin-top: 10px; margin-left: 10px; text-align: center;
font-size: 1.6rem;
color: red;
}
@media only screen and (min-width: 762px) {
.container-main {
max-width: 430px;
}
}