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
|
width: 800px;
margin: 20px auto 10px auto;
padding: 10px 30px 30px 30px;
background: hsl(0, 0%, 100%);
border: 2px solid hsl(210, 0%, 90%);
border-radius: 20px;
}
h1 {
margin: 5px 0 5px 0;
color: hsl(210, 50%, 50%);
font: bold 30px "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif;
text-align: center;
}
h2 {
margin: 10px 0 2px 0;
color: hsl(0, 50%, 50%);
font: bold 20px "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif;
}
/*
Main buttons
*/
ul {
margin-left: 30px;
}
input[type=text].large {
display: inline-block;
width: 250px;
padding: 5px 10px;
border: 2px solid hsl(0, 0%, 80%);
border-radius: 3px;
height: 24px;
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
<
<
<
<
<
<
<
<
<
|
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
|
width: 800px;
margin: 20px auto 10px auto;
padding: 10px 30px 30px 30px;
background: hsl(0, 0%, 100%);
border: 2px solid hsl(210, 0%, 90%);
border-radius: 20px;
}
#message_box {
display: none;
position: fixed;
top: 33%;
left: calc(50% - 325px);
}
#message {
display: inline-block;
padding: 1px 10px;
width: 600px;
background-color: hsl(0, 50%, 50%);
color: hsl(0, 50%, 98%);
border-style: solid;
border-width: 2px 0 2px 2px;
border-color: hsl(0, 50%, 40%);
border-radius: 3px 0 0 3px;
}
#message_close_button {
display: inline-block;
padding: 1px 5px;
background-color: hsl(0, 50%, 40%);
color: hsl(0, 90%, 90%);
border-style: solid;
border-width: 2px 2px 2px 0;
border-color: hsl(0, 50%, 30%);
border-radius: 0 3px 3px 0;
cursor: pointer;
}
h1 {
margin: 5px 0 5px 0;
color: hsl(210, 50%, 50%);
font: bold 24px "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif;
}
h2 {
margin: 10px 0 2px 0;
color: hsl(0, 50%, 50%);
font: bold 20px "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif;
}
input[type=text].large {
display: inline-block;
width: 250px;
padding: 5px 10px;
border: 2px solid hsl(0, 0%, 80%);
border-radius: 3px;
height: 24px;
|
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
color: hsl(0, 0%, 20%);
}
input[placeholder] {
color: hsl(0, 0%, 50%);
}
.dic_button {
margin: 2px;
display: inline-block;
}
.dic_button_close {
display: inline-block;
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
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
|
color: hsl(0, 0%, 20%);
}
input[placeholder] {
color: hsl(0, 0%, 50%);
}
#connect_panel {
background-color: hsl(210, 50%, 90%);
border-radius: 5px;
padding: 3px 10px;
}
#submit_button {
display: inline-block;
padding: 1px 5px;
background-color: hsl(210, 50%, 30%);
color: hsl(210, 0%, 100%);
border-radius: 3px;
cursor: pointer;
}
.dic_button {
margin: 2px;
display: inline-block;
}
.dic_button_close {
display: inline-block;
|