-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
50 lines (43 loc) · 674 Bytes
/
styles.css
File metadata and controls
50 lines (43 loc) · 674 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Montserrat", sans-serif;
background-color: rgb(247, 247, 247)
}
.background {
opacity: 0.06;
position: absolute;
left: 0;
top: 0;
width: 95%;
height: 100%;
}
h2 {
font-size: 4rem;
font-weight: bold;
padding: 2rem;
}
.welcome-week {
min-height: 100vh;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
.countdown {
display: flex;
justify-content: space-around;
text-align: center;
}
.day,
.hour,
.minute,
.second {
font-size: 2rem;
}
.uniLogo {
padding: 7rem;
}