-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (89 loc) · 1.39 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
body {
background-color: rgb(207, 207, 23);
}
h1 {
text-align: center;
color: rgb(8, 8, 82);
text-shadow: 2px 2px #fff;
font-size: 50px;
font-family: serif;
}
h2 {
color: red;
text-align: center;
font-size: 40px;
text-shadow: 2px 2px #fffefe;
}
.Que {
margin-left: 20%;
font-size: 22px;
}
pre {
font-size: 20px;
color: blue;
border: 3px solid green;
width: 70%;
border-radius: 10px;
background-color: #cfc9c9;
padding-top: 20px;
overflow-x: auto;
line-height: 30px;
}
.container {
display: flex;
justify-content: center;
justify-content: space-evenly;
}
.row {
width: 80px;
height: 30px;
background-color: rgb(212, 207, 205);
text-align: center;
padding-top: 5px;
font-size: 22px;
font-weight: bold;
border-radius: 10px;
}
.row:hover {
background-color: #000000;
}
a {
text-decoration: none;
}
a:hover {
color: #fff;
text-shadow: 1px 1px #000000;
}
@media screen and (max-width: 1044px) {
pre {
width: 90%;
}
.Que {
margin-left: 2%;
}
}
@media screen and (max-width: 664px) {
pre {
font-size: 20px;
}
}
@media screen and (max-width: 594px) {
pre {
font-size: 18px;
padding: 0;
line-height: 40px;
width: 100%;
}
}
@media screen and (max-width: 442px) {
pre {
font-size: 18px;
padding: 0;
line-height: 40px;
}
}
@media screen and (max-width: 480px) {
.main-row {
display: block;
}
}