layout.scss
1.61 KB
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
html {
height: 100vh;
}
* {
margin: 0;
padding: 0;
background-color: #ffdead;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
}
.mainBox {
display: flex;
flex-direction: column;
align-items: center;
min-height: 82vh;
margin-top: 13vh;
margin-bottom: 10vh;
padding-left: 1rem;
padding-right: 1rem;
font-size: 2rem;
* {
font-size: 2rem;
}
h2 {
font-size: 2.5rem;
}
}
.authForm {
display: flex;
flex-direction: column;
input {
width: 100%;
}
label {
margin-top: 0.2rem;
margin-bottom: 0.2rem;
}
}
.submitBtn {
width: 40%;
color: green;
border: green 2px solid;
border-radius: 4px;
input {
background-color: green;
}
}
.logoutBtn {
width: 35%;
border-radius: 4px;
background-color: red;
}
.weather-buttons {
display: flex;
flex-direction: row;
button {
margin-left: 0.5rem;
margin-right: 0.5rem;
padding: 0.3rem;
border-radius: 6px;
background-color: blueviolet;
color: white;
box-shadow: 4px 4px 4px 2px gray;
}
}
.forecastItemBox {
margin-bottom: 0.3rem;
padding: 0.1rem;
border: 2px gray solid;
border-radius: 4px;
p {
font-size: 1.5rem;
}
small {
font-size: 1rem;
}
}
hr {
margin-top: 0.5rem;
margin-bottom: 0.3rem;
}
// tweets
.tweetBox {
display: flex;
justify-content: center;
flex-direction: column;
width: 55%;
border: solid gray 2px;
border-radius: 4px;
margin-bottom: 1rem;
padding: 0.2rem 0.4rem;
small {
font-size: 1.5rem;
margin-top: 0.3rem;
b {
font-size: 1.6rem;
margin-right: 0.5rem;
}
}
}