-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGrammatica.css
76 lines (73 loc) · 1.12 KB
/
Grammatica.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
/* CSS declarations go here */
body{
font-family:garamond;
background:#f0f0f0;
font-size:150%;
}
h1{
text-align:center;
color: #66323d;
}
.wrap{
/*background:#f0f0f0;*/
width: calc(390px + 160px + 25px);
margin: 0 auto;
/*overflow:auto;*/
}
#main{
float: right;
width: 390px;
}
#sidebar{
float: left;
width: 160px;
}
#userInput{
width:calc(400px - 28px);
font-size:130%;
padding:12px;
border: 1px solid #f8f8f8;
background-color:#f8f8f8;
}
#userInput:focus{
outline:none;
border: 1px solid #66323d;
}
#VTypeSelector{
padding:8px;
border: 1px solid #f8f8f8;
margin-top: 10px;
margin-right: 20px;
background-color:#f8f8f8;
}
select:focus{
outline:none;
border: 1px solid #66323d;
}
.menu-wrapper{
margin-top: 30px;
/*padding-right: px;*/
/*border-right: 1px solid black;*/
}
#verbTypesTitle{
padding-left: 2px;
}
#submit{
display:block;
padding:12px;
padding-left:8px;
width:90px;
border: 1px solid black;
background-color:#66323d;
color:white;
margin-top:24px;
text-align: center;
cursor: pointer;
}
#notice{
position: absolute;
top: 520px;
bottom: 0px;
padding-left: 25px;
/*box-align:center;*/
}