-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
120 lines (101 loc) · 1.64 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
* {
box-sizing: border-box;
}
body {
display: flex;
height: 100vh;
background: url(assets/background.jpg);
background-size: cover;
overflow-y: hidden;
font-family: Arial, Helvetica, sans-serif;
}
p {
text-align: center;
color: white;
font-size: 40px;
}
.desktop {
text-align: center;
}
h3 {
text-align: center;
color: cyan;
}
.icons img {
height: 300px;
width: 300px;
}
.content {
margin-bottom: 40px;
}
.content-docker {
margin-bottom: 30px;
}
.content-terminal {
margin-bottom: 30px;
}
.icons {
margin-left: 350px;
margin-right: 280px;
column-count: 2;
column-gap: 50px;
}
.docker {
text-align: center;
}
.terminal {
text-align: center;
}
h1 {
text-align: center;
color: coral;
}
#in {
height: 38px;
width: 350px;
margin-left: 28px;
background-color: #363636;
border-radius: 5px;
outline-color: #363636;
padding: 10px;
text-align: center;
font-size: 20px;
color: beige;
overflow-x: scroll;
}
h2 {
color: burlywood;
font-size: 20px;
font-weight: 600;
}
.input {
margin-bottom: 10px;
}
.run {
background-color: aquamarine;
border-radius: 5px;
height: 30px;
width: 50px;
margin-left: 20px;
}
#display {
background-color: #363636;
text-align: center;
font-size: 20px;
margin-top: 15px;
margin-left: 320px;
margin-bottom: 10px;
height: 300px;
width: 700px;
border-radius: 20px;
padding-top: 20px;
color: beige;
overflow-x: scroll;
}
.back {
background-color: rosybrown;
border-radius: 5px;
height: 30px;
width: 100px;
margin-left: 20px;
}