summaryrefslogtreecommitdiff
path: root/style.css
blob: c30030a7a66484ece30052097b03e713af2aaaa8 (plain) (blame)
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
 font-family: DejaVuMono; /* Гарнитура шрифта */
 src: url(DejaVuSansMono.ttf); /* Путь к файлу со шрифтом */
 font-weight: bold;
}

body
{
  color: #F4F0E8;
  font-family: "DejaVuMono", "Lucida Console", "Helvetica", monospace;
  background:url(grid.png) repeat #000;
  font-size: 14px;
  font-weight:bold;
  line-height: 120%;
  }

.my-div { display: none; }

a#dot {
    text-decoration: none; /* Убираем подчеркивание */
    border-bottom: 1px dashed #E3E389; /* Добавляем свою линию */ 
    line-height: 1.3em;
    display: inline-block;
   }
   
a#dot:hover {
    color: #F3F3CF!important; /* Цвет ссылки при наведении на нее курсора */
   }

a {
  color: #E3E389;
  }

a:hover
{
color:  #F3F3CF;
}

a:visited, a:link, a:active
{
  color: #E3E389!important;
  text-decoration: none;
}

  /* Mozilla based browsers */
::-moz-selection {
background-color: #000000;
color: #C1B492;
}

/* Works in Safari */
::selection {
background-color: #000000;
color: #C1B492;
}

/* Works in Opera */
::-o-selection {
background-color: #000000;
color: #C1B492;
}
::-ms-selection {
background-color: #000000;
color: #C1B492;
}

/* Works in Internet Explorer */
::-webkit-selection {
background-color: #000000;
color: #C1B492;
}

main { 
        background:#000; 
        margin: 20px 5px 20px 5px;
        padding: 20px;
        width:800px;
        height:600px;
        box-shadow: 0px 5px 10px #000000;
        overflow:auto;
        display:block;
      }
      
.grid
{
  position:fixed;
  z-index:100;
  display:block;
  background:url('grid.png') repeat top;
}

.modalDialog {
	position: fixed;
	font-family: "DejaVuMono", Helvetica, sans-serif;
	font-size:15px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	display: none;
	pointer-events: none;
}

.modalDialog:target {
	display: block;
	pointer-events: auto;
}

.modalDialog > div {
	width: 512px;
	position: relative;
	margin: 5% auto;
	padding: 10px 10px 10px 10px;
	border: 5px solid #5B717C;
	background: #041B23;
}

.close {
	background: none;
	color: #FFFFFF;
	line-height: 19px;
	position: absolute;
	right: -50px;
	top: 512px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

.close:hover { color: #00d9ff; }