-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (76 loc) · 1.14 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
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
margin: 0;
padding: 0;
}
img {
width: 100%;
height: auto;
}
body {
background-color: lightblue;
font-family: "Roboto", sans-serif;
}
.row {
display: flex;
flex-wrap: wrap;
margin-top: calc(var(--bs-gutter-y) * -1);
margin-right: calc(var(--bs-gutter-x) * -0.5);
margin-left: calc(var(--bs-gutter-x) * -0.5);
}
.col {
width: 50%;
}
.col-range {
width: 30% !important;
background-color: white;
height: 100vh;
padding: 3%;
}
.col-preview {
padding: 0;
display: flex;
justify-content: center;
align-items: center;
}
.container {
background-color: white;
width: 60%;
padding: 5%;
text-align: center;
}
form {
padding-top: 30%;
}
input {
width: 90%;
font-size: 24pt;
}
footer {
padding: 5%;
}
#owner {
margin-top: 50%;
}
.github_icon {
width: 30px;
}
.code {
background-color: #3c3442;
padding: 3%;
color: white;
}
.code span {
color: rgb(250, 99, 212);
}
@media (max-width: 768px) {
.col-range {
width: 100% !important;
}
.col {
width: 100%;
}
.container {
margin: 5% 0 5% 0;
}
}