-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.scss
More file actions
95 lines (86 loc) · 1.84 KB
/
style.scss
File metadata and controls
95 lines (86 loc) · 1.84 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
*{box-sizing: border-box; font-family: 'Jetbrains Mono', system-ui, sans-serif;}
body{font-size: 25px; margin: 0; padding: 0; transition: all 0.5s ease-in-out;}
.sub-header{
font-size: large;
text-align: center;
}
.header{
font-size: 2em;
text-align: center;
}
.smol{font-size: 20px;}
.parent-1{
display: flex;
// font-size: 10px;
flex-direction: row;
justify-content: space-around;
.img-container{
border: 3px solid black;
padding: 10px;
border-radius: 10px;
width: 48%;
img{width: 100%;}
.text{font-size: 1rem;}
}
}
.q{
border: 1px solid black;
border-radius: 10px;
margin: 10px;
padding: 10px;
}
.tab1{
width: 100%;
border-collapse: collapse;
margin: 10px 0;
}
.tab1 {
width: 90vw;
margin: 0 auto;
max-width: 100%;
table-layout: fixed;
word-wrap: break-word;
td, th {
max-width: 100%;
overflow-wrap: break-word;
}
}
.tab1, .tab1 tr, .tab1 td, .tab1 th {
border: 2px solid black;
border-collapse: collapse;
padding: 10px;
}
.dark{
position: sticky;
top: 90%;
border: 1px solid black;
border-radius: 50%;
width: 50px;
height: 50px;
text-align: center;
line-height: 50px;
font-size: 2rem;
cursor: pointer;
transition: all 0.5s ease-in-out;
margin-left: calc(100% - 60px);
}
#dark{display: hidden;}
@media all and (max-width: 768px){
.parent-1{
flex-direction: column;
.img-container{
width: 95%;
gap: 10px;
img{width: 100%;}
}
}
}
@media all and (max-width: 500px){
body{font-size: 20px;}
.parent-1{
.img-container{
.text{font-size: 0.8rem;}
}
}
}
.c{background-color: yellow; font-family: arial; font-size: 15px; margin: 0; padding: 5px;}