forked from ShaharEli/FirstWeekendTask
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
105 lines (96 loc) · 1.95 KB
/
styles.css
File metadata and controls
105 lines (96 loc) · 1.95 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
#navbar{
position:fixed;
}
body{
text-align: left;
line-height: 150%;
font-family: Georgia, 'Times New Roman', Times, serif;
}
main {
background-image: url(backround.jpg);
background-color: #7ab4f7;
background-repeat: no-repeat;
background-size: cover;
padding-left:5vw;
}
nav {
background-image: url(nav\ backround.jpg);
background-repeat: no-repeat;
background-size: cover;
background-color: #48ddc4;
line-height: 200%;
}
table, th, td {
border: 1px solid black;
width: 10%,60%,10%;
text-align: center;
}
a{
color: 000;
}
.content{
margin-left: 2vw;
}
code{
background: #1972bb33;
border: 1px solid #ddd;
border-left: 3px solid #0a024b;
color: #666;
page-break-inside: avoid;
font-family: monospace;
font-size: 15px;
line-height: 1.6;
margin-bottom: 1.6em;
max-width: 65%;
overflow: auto;
padding: .2em .2em;
display: block;
word-wrap: break-word;
}
/* Split the screen in half */
.split {
height: 100%;
width: 50%; /* from some reason if i change the width percentage it ruins #user story14- */
position: fixed;
z-index: 1;
top: 0;
overflow-x: hidden;
padding-top: 20px;
padding-bottom: 20px;
}
/* Control the left side */
.left {
left: 0;
}
/* Control the right side */
.right {
right: 0;
}
@media only screen and (max-width: 600px) {
#navbar {
display: none;
}
#main-doc{
margin: left 20vw right 20vw;
padding-right: 30vw;
}
}
@media (any-hover: hover) {
a:hover {
background: rgba(187, 187, 165, 0.562);
color: #0a024b;
}
}
@media only screen and (max-width: 400px) {
#main-doc {
margin-left: -10px;
}
code {
margin-left: -20px;
width: 100%;
padding: 15px;
padding-left: 10px;
padding-right: 45px;
min-width: 233px;
}
}