-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
96 lines (84 loc) · 1.58 KB
/
index.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.header1{
background-color: #664618;
color: #fff;
padding: 10px;
text-align: center;
font-size: 20px;
font-weight: bold;
margin-bottom: 10px;
margin-top: 5px;
}
a{
text-decoration: none;
color: #fff;
}
a:hover{
text-decoration: underline;
color: #b3cccc;
}
/* template css */
body{
background-color: #e5e5cc;
height: 100vh;
}
.header2{
background-color: #7c541d;
color: #fff;
padding: 10px;
font-size: 20px;
font-weight: bold;
margin-bottom: 10px;
margin-top: 10px;
border-radius: 5px;
}
pre{
width: 98%;
background-color: yellowgreen;
border-radius: 10px;
box-shadow: 0 0 10px #000;
padding-top: 15px;
margin-bottom: 10px;
}
code{
padding: 2px;
border-radius: 5px;
color: #000;
font-family:'Courier New', Courier, monospace ;
font-weight: 500;
letter-spacing: 0.5px;
/* font-family:monospace; */
}
.desc{
color: #444422;
font-weight: bold;
letter-spacing: 0.5px;
word-spacing: 5px;
padding: 0;
margin-bottom: -22px;
margin-top: -20px;
}
/* Media Queries */
@media only screen and (max-width: 768px) {
/* Add responsive styles here */
body {
width: 100%;
}
.header1, .header2 {
font-size: 16px;
}
pre {
width: 100%;
}
}
@media only screen and (max-width: 480px) {
/* Add additional responsive styles here */
.header1, .header2 {
font-size: 14px;
}
}