-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylle.css
106 lines (96 loc) · 1.3 KB
/
stylle.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
body
{
font-family: Calibri;
margin: 0;
width: 100%;
height: 100%;
}
input
{
width: 50px;
height: 50px;
font-size: 30px;
text-align: center;
border: 2px solid #000;
}
main
h2
{
text-align: center;
}
form
{
display: flex;
justify-content: center;
padding-top: 100px
}
.row
{
flex-direction: column;
align-items: center;
}
#test
{
border: 2px solid #000;
width: 200px;
font-size: 25px;
background-color: aliceblue;
clear: both;
}
#plec
{
width: 200px;
border: 2px solid #000;
font-size: 25px;
background-color: aliceblue;
float: left;
}
button
{
border: 2px solid #000;
width: 100px;
height: 40px;
float: left;
}
button:hover
{
border: 4px solid #000;
background-color: #6d6d6d;
}
#ref
{
width: 100px;
height: 40px;
font-size: 14px;
margin-top: 10px
}
#ref:hover
{
border: 4px solid #000;
background-color: #6d6d6d;
}
.logo
{
width: 100%;
height: 100px;
background-color: #000;
text-align: center;
}
header
h1
{
padding-top: 30px;
color: #fff;
font-size: 40px;
text-align: center;
}
footer
{
clear: both;
margin-top: 10%;
text-align: center;
background-color: #000;
color: #fff;
padding-top: 3px;
padding-bottom: 3px;
}