-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
119 lines (111 loc) · 2.14 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
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
@charset "utf-8";
/* Anatoly Mironov, M09K0272
20100206
Uppgift 1
MAH DA123A
*/
/* allmänt, gällande hela sidan */
html {
/*height:100%;*/
}
body {
font-size:10pt;
font-family:Verdana, sans-serif;
height:100%;
}
img {
border:none;
}
/* HEADINGS */
h1 {
text-align:center;
}
/* COLUMNS & DIVS */
div#leftColumn {
/* för info, uppdykande text om spelregler (js), validering med mera */
width:15em;
height:100%;
float:left;
margin-right:2em;
}
div#faceDescriptionOuter {
background-color: #eef0eb;
border: 1px dotted #B7C4D3;
margin-bottom:2em;
min-height:20em;
padding:0.5em;
}
div#faceDescription {
font-size:1.2em;
font-family:monospace;
vertical-align: middle;
}
div#author {
}
div#validate {
}
div#centerColumn {
float:left;
}
div#rightColumn {
float:left;
margin-left:2em;
}
div#communicationScreen {
width:20em;
min-height:10em;
background-color:#eef0eb; /* konstruktionsramar */
border-style:outset;
padding:0.5em;
text-align: center;
font-family:monospace;
font-size:1.2em;
}
/* TABLE */
table#resultTable {
/*width:60em; bestäms av kolumnernas bredd*/
border-collapse:collapse; /*lite buggigt i Firefox*/
/*border-spacing:0;*/
}
table#resultTable, table#resultTable th, table#resultTable td {
border:1px solid gray;
}
th.faceName {
width:10em;
}
th.player1, th.player2, th.player3, th.player4 {
width:2em;
}
tr.lowerSum {
font-weight:bold;
border-top:2px solid black;
border-bottom:2px solid black;
}
td.player1, td.player2, td.player3, td.player4 {
text-align:right;
}
/* När en spelare spelar så visas den aktuella kolumnen */
th.emphasized, td.emphasized {
background-color:#93c4ff;
font-weight:bold;
}
/* När ett element är klickbart visas muspekaren som en hand */
img.clickable, td.clickable {
cursor:pointer;
}
/* GAME */
img.dice {
}
div#imgDice {
margin-top:2em;
}
input[type=button] {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size:2em;
background-color: #333333;
color:white;
padding:0.2em;
}
input[type=button]:hover {
color:red;
}