-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtyyli.css
60 lines (58 loc) · 856 Bytes
/
tyyli.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
*{
-moz-box-sizing:border-box;
-webkit-box-sizing:border-box;
box-sizing:border-box;
}
html, body{
font-size: 18px;
color: #333;
}
label {
color: blue;
}
#menu {
position: fixed;
left: 5px;
width: 200px;
background-color: gray;
}
#menu ul {
list-style: none;
}
#menu ul a:hover {
background-color: white;
}
#sisalto {
margin-left: 170px;
}
#Login {
position: relative;
width: 20vw;
left: 30vw;
border: 1px solid #DDD;
padding: 0px 20px 0px 20px;
margin-bottom: 50px;
margin-top: 50px;
}
#Login h1{
width: 100%;
text-align: center;
margin-bottom: 30px;
color: #666;
}
#Login input{
position: relative;
width: 100%;
padding: 10px;
color: #333;
margin-bottom: 20px;
font-size: 1.1em;
color: #333;
border: 1px solid #DDD;
}
#Login input[type="submit"]{
background: #3366ff;
color: white;
outline: none;
border: 0;
}