App.css 1.34 KB
Newer Older
Spark's avatar
layouut    
Spark committed
1
2
3
4
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

body {
  font-family: "Noto Sans KR", sans-serif !important;
5

Spark's avatar
Spark committed
6
}
7

Spark's avatar
Spark committed
8
9
10
.a:hover {
    color: white;
}
11
12
13
14
15
16
17
18
19

.btn-primary:active {
  outline: white !important;
  border-color: white !important;
}

.card .card-title {
  color: rgb(109, 110, 109);
  /* background-color: ; */
Spark's avatar
Spark committed
20
21
22
23
24
25
26
27
28
29
}

.form-group .form-control {
  border-radius: 40px;
}
#formbtn {
  width: 100%;
  border-radius: 40px;
  background-color: rgb(110, 189, 142);
  border-color: ivory;
30
  color: white;
Spark's avatar
Spark committed
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
}

#logpng {
  width: 25px;
  height: auto;
  margin-right: 1em;

}

#socialLink {
  padding: 0.5em;
  margin: 0.5em;
  height: 2.5em;
  color: gray;
  font-size: 10px;
  width: fit-content;
Spark's avatar
layouut    
Spark committed
47
48
}

Spark's avatar
layout    
Spark committed
49
50
51
52
53
54
@media (max-width: 767.98px) { 
  body {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    margin: auto;
Spark's avatar
layouut    
Spark committed
55

Spark's avatar
tsx    
Spark committed
56
  }
Spark's avatar
layout    
Spark committed
57
58
59
60
  .container-fluid {
    max-width: 480px !important;
  }
  
Spark's avatar
Spark committed
61
62
63
64
  #stickyy {
    max-width: 300px;
  }
  
Spark's avatar
layout    
Spark committed
65
 }
Spark's avatar
tsx    
Spark committed
66

Spark's avatar
layout    
Spark committed
67
68
69
70
71
72
@media (min-width: 768px) {
  body {
    padding: 30px;
    padding-left: 50px;
    padding-right: 50px;
    margin: auto;
Spark's avatar
layouut    
Spark committed
73

Spark's avatar
layout    
Spark committed
74
  }
Spark's avatar
layouut    
Spark committed
75

Spark's avatar
layout    
Spark committed
76
  .container-fluid {
Spark's avatar
Spark committed
77
    max-width: 1000px !important;
Spark's avatar
tsx    
Spark committed
78
  }
Spark's avatar
layout    
Spark committed
79
80
  .container-fluid .row #stickyy {
    position: sticky !important;
Spark's avatar
Spark committed
81
82
83
84
85
86
    position: -webkit-sticky; 
    top: 40px;
    width: fit-content;
    height: fit-content;
    max-width: 240px;

Spark's avatar
tsx    
Spark committed
87
  }
Spark's avatar
layout    
Spark committed
88
89

 }