-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (103 loc) · 1.75 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
@font-face
{
font-family: 'Inter Regular';
font-style: normal;
font-weight: normal;
src: url('stuff/Inter-Regular.woff');
}
.Header
{
display: inline-flex;
position: relative;
width : 100%;
height: 18.2%;
background-color: #c4c4c4;
}
#roboticangz
{
float:left;
margin : 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: Inter Regular;
font-size:50px;
/*font-size: 3vw; 80% din 18.2%*/
}
h2{
font-size:28px;
}
#robo
{
max-width:100%;
max-height:100%;
margin : 0;
position: absolute;
top: 50%;
left: 33%;
transform: translate(-50%, -50%);
/*width: 6vw*/
}
#ngz
{
float:left;
max-width:100%;
max-height:100%;
margin : 0;
position: absolute;
top: 50%;
left: 67%;
transform: translate(-50%, -50%);
/*width: 6vw*/
}
.box
{
float:left;
padding-top:0;
/* margin-top : 2%;
margin-left: 35%;
transform: translate(-50%, 0);*/
margin-top:6vh;
margin-bottom:0%;
margin-left:10%;
width : 342.76px;
height: 300px;
/* border : 1px solid black;*/
}
.upperbox
{
margin-top:0;
padding-right:0;
padding-top:0;
padding-bottom: 0;
background-color: #c4c4c4;
border-radius: 20px 20px 0px 0px;
border: 1px solid black;
}
.lowerbox
{
background-color: aliceblue;
margin-top:0;
padding-right:0;
padding-top: 0;
border-radius: 0px 0px 20px 20px;
border: 1px solid black;
}
.box-text
{
padding-left: 10px;
padding-right: 10px;
text-align: center;
font-family: Inter Regular;
}
.Footer
{
position:fixed;
bottom:0;
left:0;
width : 100%;
height: 6%;
background-color: #c4c4c4;
text-align: center;
}