-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles2.css
More file actions
117 lines (103 loc) · 2.21 KB
/
styles2.css
File metadata and controls
117 lines (103 loc) · 2.21 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Muli', sans-serif;
}
.undrline{
text-decoration: underline;
}
h1[class="hi"] {
text-align: center;
font-weight: 600;
border-bottom: powderblue 2px solid;
padding-bottom: calc(10px + 1vw);
color: #F62817;
background-color: #f9c74f;
border-radius: 8px;
}
h1[class="wlc"] {
text-align: center;
font-weight: 600;
}
.d1 {
display: -ms-grid;
display: grid;
-ms-grid-rows: 1fr;
-ms-grid-columns: (minmax(150px, 1fr))[auto-fit];
grid-template: 1fr/repeat(auto-fit, minmax(150px, 1fr));
}
.d1 .hu {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: space-evenly;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
text-align: center;
}
.d1 .hu .cout {
background: teal;
margin-top: calc(2px + 0.5vw);
margin-left: calc(2px + 1vw);
border-radius: 4px;
padding: 2px;
color: #003152;
font-size: calc(14px + 1vw);
font-weight: 500;
padding: calc( 2px + 1vw) calc(auto + 1vw);
}
.d1 .hu .no {
background: steelblue;
margin-top: calc(2px + 0.5vw);
margin-left: calc(2px + 1vw);
font-size: calc(14px + 1vw);
border-radius: 4px;
color: #f9c74f;
font-weight: 400;
}
option {
color: #229179;
}
.sdw {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: space-evenly;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
}
.sdw #t2,
.sdw #t3 {
font-size: calc(10px + 1vw);
border: solid calc(1px + 0.2vw) #0f5e3f;
padding: 4px 4px;
border-radius: 4px;
background: #003152;
max-width: 40%;
margin: calc(2% + 1vw);
}
.ssh {
text-align: center;
}
#t1,
#t2,
#t3 {
color: #f9c74f;
}
#t1 {
font-size: calc(10px + 1vw);
border: solid calc(1px + 0.2vw) #0f5e3f;
margin-left: 30px;
border-radius: 4px;
max-width: 50%;
background: #003152;
margin: calc(2% + 1vw);
}